All I need is to create a VB Sub command and have the parameter which will be "A1" or "Z3" or what ever cell reference is then put that reference into the Function so I can change the value of it.
So excel reads
=MyFunction(A1)
And VB
Sub MyFunction(CurrentPos)
CurrentPos.Value="Hello New Value"
End Sub
P.S. This formula isn't what I want exactly but from this I can work the rest myself.
So excel reads
=MyFunction(A1)
And VB
Sub MyFunction(CurrentPos)
CurrentPos.Value="Hello New Value"
End Sub
P.S. This formula isn't what I want exactly but from this I can work the rest myself.