Hi Guys!
I don't know if what i'm asking you is achievable.
I've learned how to pass variables/arguments from powershell to Excel/VBA Macro but i need to do the opposite thing.
This is an example of what i want:
Powershell Excel/VBA Macro
$Input=1 ----------------------------------------------------------------> Sub Macro(input)
... ...
$excel.Run("Macro",$Input) Output=input +6
... ...
$output (Expected 7) <---------------------------------------------------- return Output
I don't know how to do this can you help me please?
A