Excel Formula

Closed
Shannon - Mar 14, 2010 at 03:15 PM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Mar 14, 2010 at 05:23 PM
Hello,
I need to create a formula that will compare which cell is greater than the other and then put the greater one into the cell. Say B4 compared to C4 and I also have to have the name of the company I am comparing, automatically entered.

1 response

rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 766
Mar 14, 2010 at 05:23 PM
lets say you want to put in D4, then in D4 you can write

=IF(B4>C4, B4, C4)
0