I created sample VBA function in .xlam module and I want to return simple Powershell Get-Date string:
Private Function test1() As String
test1 = Shell("Powershell Get-Date")
End Function
In Excel's cells when I try to run that =test1() there are 4 digits numbers:
1456
1296
4228
1232
4976
5328
4844
4560
2572
How can I do that?