I have a cell with a spaced delimited string say "NULL 9"
Say this data is stored in A1.
I have a function called
Function splitCell(str As String) As String()
splitCell = split(str, " ")
End Function
I am trying to break the cell into a string array, what I then want to do is to have a formula such as
{=splitCell(A1)}
at the locations A2 and A3, so that A2 would contain "NULL" and A3 would contain "9". Where am I going wrong? Please help. Thanks