I recall running across a thread where a null value in an excel cell is treated differently than "" and there were functions where a null value was ok while "" would produce errors. The issue was that there was no way to reset a null value via Excel formula and I'm wondering if vbNullString could provide a solution.
Perhaps not, since it's likely to be the case that the "" value was a result from an Excel formula and it seems to me that you still can't change it to a null value without deleting the Excel formula.
I guess my question is, assuming vbNullString is a trully null value, i.e. same as the value of an empty cell on a new worksheet, can I use this to create a null function for Excel Formulas to use instead of ""?
Putting = vbNullString directly into a cell isn't recognized (#Name? error). I've never created a function before so I'm only asking (instead of trying it myself) in case I'd be learning how to create a function only to pursue a dead end.