VBA 2007 - Maximum Function

Closed
tixilee Posts 3 Registration date Tuesday August 28, 2012 Status Member Last seen September 6, 2012 - Sep 6, 2012 at 10:44 PM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Sep 15, 2012 at 07:12 AM
Hi.

On the same worksheet AAA, for each row, I would like to fond thé maximum value between column East and column Ouest.

Is there a vba function? Thanks.
Related:

1 response

rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 766
Sep 15, 2012 at 07:12 AM
you dont need vba to find max in ranges

=max(range1, range2)

example
=max(a:a,c:c) to look max value in column A and column C
0