I'm simply trying to create a formula that I have been typing manually.
The formula typically looks like this:
=INDIRECT($B5&"!"&C$1&$F$2)*$H$2
I tried the VBA code:
Function Figure(Name, Column, Row, Multiplier)
Figure = INDIRECT(Name&"!"&Column&Row)* Multiplier
End Function
Any ideas to what I'm doing wrong?
Thank you
The formula typically looks like this:
=INDIRECT($B5&"!"&C$1&$F$2)*$H$2
I tried the VBA code:
Function Figure(Name, Column, Row, Multiplier)
Figure = INDIRECT(Name&"!"&Column&Row)* Multiplier
End Function
Any ideas to what I'm doing wrong?
Thank you