I am trying to write an Excel custom function that returns a dynamic array containing timestamps and values. In some cases it is possible that a timestamp does not have a value. In this case I would like the value in the dynamic array to be truly blank.
I need this because I want to create a graph using the data from the dynamic array, and as long as i return '' or null for an empty cell, Excel interprets it as 0 and the graph does not look correct (I would like the graph to interpolate the data when there is a blank cell)
Is there a possibility to return truly blank values from Excel custom function?
1.2k Views Asked by dave_10 At
1
There are 1 best solutions below
Related Questions in OFFICE-JS
- Excel add-in: How to detect whether the host platform is "office online"
- How to get User's actual Email Id in Outlook Add-in Integration
- Check if a JavaScript method or property is supported in an Excel version
- How can I create a Toc(Table of Content) for a document in Word using office.js?
- Persisting data in word document using office add-in
- How to get working Dialog API of OfficeJS API with Outlook 2016 desktop client
- Detecting a sort in officeJS Excel
- Need help loading a .docx file into current document
- Same versions of Office.js hosted on 'beta' and '/1/'?
- Saving Custom property using OfficeJS API doesn't persist on Exchange for long time
- Delete & Reload a "Add in" from Excel (Online & desktop app)
- OfficeJS Word Addin | Dialog API's messageParent not working across domains on MAC
- What browser does Office 2016 on Mac use for taskpanes?
- Why does this Context.Sync not work?
- Getting error using Firebase popup authentication in Word add-in
Related Questions in EXCEL-ADDINS
- C# Excel Add In: Get active worksheet as XML
- Strange number-of-character-in-a-cell limitation when programmaticaly (VBA, C#) set array string to a range
- WPF new window creation on new thread error
- VBA Application Events in Excel AddIn
- Create excel CustomTaskPane in delphi (add-in)
- What determines which connection string to use for SQL Server database for each client computer?
- Webbrowser on Excel Ribbon?
- a new build error after making change by replacing version=10.0.0.0 with 11.0.0.0 in VS2010
- Check for array formula within a macro-style Excel UDF
- How to call DLL function returing string from Excel VBA?
- When to set MacroOptions for Excel Addin
- Delete & Reload a "Add in" from Excel (Online & desktop app)
- Writing a DLL in Fortran/calling from Excel
- Excel add-in is being shown as a COM add-in
- Register UDF with descriptions of arguments using excel addin
Related Questions in CUSTOM-FUNCTIONS-EXCEL
- Is there a possibility to return truly blank values from Excel custom function?
- Excel add-in: Excel.CustomFunctionDimensionality.matrix is not a recognized type
- How long does the custom functions JS file persist in Excel's cache for production add-ins?
- How can I access the Excel API from a custom function on Windows?
- Scriptlab custom function getting TypeError: Network request failed when making GET api calls
- ISLIKE function in excel
- Incorrect result in excel array formula from UDF if returned array has only one element
- An UDF for Concatenate Function in Excel
- Excel VBA: Calling Named Function with Parameters in UDF
- Not to Show Add-in error message if it is not installed
- Excel Web Add-in Custom Function using Visual Studio
- Excel JS Addin from existing web service
- How can I get a list of other users in the current excel sheet?
- Office addin (custom functions) deployment to Azure app service
- OfficeJs - Getting custom function's address property when using Streaming Invocation
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
For custom function, we can't return blank content or NULL. Dynamic array will return 0 for empty cell and it's by design behavior. You may try an empty string as a workaround but it will definitely change the content in the file.