Aug 25 2023 11:11 PM
Why is the function below not setting value for A2 when I call from a cell. However, if I hit play in the VBA editor it works.
Public Function RsTest() As String
Range("A2").Value = "not working"
RsTest = "test"
End Function
Aug 25 2023 11:21 PM
Solution