I have an excel workbook that will perform calculations for wire sizes. Based on a certain "amp load", I need to be able to display multiple combinations of wires used. I have created a seperate worksheet listing different wire combinations for various "amp loads".
Is there a way to have a user defined function return the source of the list needed?
I have it set in a way so that
If AmpLoad <= 100 then
' return list source for this load
ElseIf AmpLoad > 100 and AmpLoad <= 200 then
' return list source for this load
End If
I just can't figure out the statement inside to return a list source...
Is there a way to have a user defined function return the source of the list needed?
I have it set in a way so that
If AmpLoad <= 100 then
' return list source for this load
ElseIf AmpLoad > 100 and AmpLoad <= 200 then
' return list source for this load
End If
I just can't figure out the statement inside to return a list source...