I have a VBA function with multiple arguments, which I need to get from the excel sheet and not from a sub, how do I divide the inputs into the number of parameters i need for my function?
Ex:
Function func(a as double,b as double) as double
'calculations
'some return value
End Function
This is how I have been trying to get the values:
