P Phillips Dec 2, 2003 #1 I am trying to do the same thing as =MAX(I2,M2,Q2) would do. How can I do this? Can I add more values to compare? Thanks, Phil
I am trying to do the same thing as =MAX(I2,M2,Q2) would do. How can I do this? Can I add more values to compare? Thanks, Phil
H Harald Staff Dec 2, 2003 #2 Hi Phil Sub test() Dim L As Long L = 600 MsgBox Application.Max(3.1415, L, 903.33, -4, 2) End Sub