i would like to run a function from another file (in the same directory) and want to save the return value (it s a string) to a local string variable.
unfortunately, this
does not work.
what code do i need, to save the result of the function to my variable x?
thank you!
unfortunately, this
Code:
dim x as string
x = Run "'filename.xls'!Modul1.update"
does not work.
what code do i need, to save the result of the function to my variable x?
thank you!