Link to home
Start Free TrialLog in
Avatar of Robb Hill
Robb HillFlag for United States of America

asked on

excell formula

I have a very large spreadsheet with data that looks like the following: The underline here just means that column is blank.
So this is the structure.  Its always 2 rows per grouping to look at.  If my formula was working it would do the following to the text below.
there is no patterns with the numbers.  only that it needs to be moved to the right one column and also up and right on the previous row.
This pattern goes on for about 500+ rows.

BEFORE::
NULL      22208      ROOT      _______
21191      22210      19505      _______
NULL      22212      ROOT      _______
21192      22214      19506      _______

AFTER:
NULL      22208      ROOT      19505      
21191      22210      19505      19505      
NULL      22212      ROOT      19506      
21192      22214      19506      19506
ASKER CERTIFIED SOLUTION
Avatar of Subodh Tiwari (Neeraj)
Subodh Tiwari (Neeraj)
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Or simply this....
In D2
=MAX(C2:C3)

Open in new window

Avatar of Robb Hill

ASKER

Thank you so much
You're welcome Robb! Glad to help.