Is is possible to use one UDF inside another?
For example Columns A,B,C,D.
UDF1(w,x) - Calculates the product of the maximum of A and the Maximum of B
UDF2(y,z) - Calculates the product of the maximum of C and maximum of D
UDF1 and UDF2 work fine.
UDF3 to calculate the product of UDF1 and UDF2 (as in cell calc is trivial)
Can I make UDF3 that take the as input (w,x,y,z) and then passes w,x to UDF1 and y,z to UDF2 - return the answers from UDF1 and UDF2 and calculate the product?
(I know there are other ways to do what I am describing - its the concept I am interested in) --
Background: I am trying to work up examples of programming inside Excel that starts by building simple UDFs and then recycling them (kinda like subroutines) -- again, I appreciate that there are better ways of doing this.
Cheers G
