Thread: VBA function
View Single Post
  #1   Report Post  
Jeff
 
Posts: n/a
Default VBA function

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) ?