VBA function

J

Jeff

I have a function in VBA, and it depends on two variables. It is called in
another function.

Blend_Qx(A,B)

The function Blend_Qx(A,B) takes A and B, then gives a new value C in the
function. Is there anyway to pass the variable C to the main program.

like

C = Blend_Qx(A,B) ?
 
Top