I'm trying to add text in the current selected cell
My VBA function is :
Function AddText()
ActiveCell.Value = "Hello World!"
End Function
But I'm getting following error when I call the function :
"There are one or more circular references where a formula refers to its own cell either directly or indirectly. This might cause them to calculate incorrectly. Try removing or changing these references, or moving the formulas to different cells."
Please help!