Hey Guys,
I am very new to creating functions using Microsoft VBA and hence need your help for the same.
I want to create a function which should perform the operation mentioned below.
Function IDW(StartValue, EndValue, CurrentPoint)
IDW = (StartValue * (Row(EndValue) - Row(CurrentPoint)) + EndValue * (Row(CurrentPoint) - Row(StartValue)) / (Row(EndValue) - Row(StartValue))
Kindly help how to proceed?
I am very new to creating functions using Microsoft VBA and hence need your help for the same.
I want to create a function which should perform the operation mentioned below.
Function IDW(StartValue, EndValue, CurrentPoint)
IDW = (StartValue * (Row(EndValue) - Row(CurrentPoint)) + EndValue * (Row(CurrentPoint) - Row(StartValue)) / (Row(EndValue) - Row(StartValue))
Kindly help how to proceed?