I am trying to use a null in a formula created by a macro
The problem being the last few characters of the code where I want to use ""
The formula cuts off after the last comma and I get
How do I insert a null into a formula using VBA without VBA seeing it as end of string?
Thanks in advance
Code:
Form4 = "=IF(RC[-1]>0,RC[-1]*RC[-4],"")"
The formula cuts off after the last comma and I get
Code:
Form4 = "=IF(RC[-1]>0,RC[-1]*RC[-4],"
Thanks in advance