Save the date! Join us on October 16 for our Product Ops launch event. Register here.
Jan 31, 2024 01:24 PM
Hi there - I am looking to create a column that will essentially lookup the field values of columns Q1 - Q4 and output the latest number.
We input quarterly projections and want to be able to identify the most recent number by looking at 1 field ("latest projections"). *Note - not all fields will have data from Q1 - Q4.
I tried using the IF function but that only seems to work with 2 different fields max. ( IF(Q2> " ", Q2, Q1) )
If I have data entered in Q1 field and then in Q3 enter in new data in the respective Q3 field, I want the "Latest projections" column to display that Q3 field since it its the most up to date #.
I hope this makes sense. I will attach a screenshot for reference where I manually updated the "Latest Projection" field.
Solved! Go to Solution.
Jan 31, 2024 03:45 PM
Jan 31, 2024 03:45 PM
Hi,
IF(Q4,Q4,
IF(Q3,Q3,
IF(Q2,Q2,Q1)
) )
Feb 01, 2024 06:26 AM
Thank you!
This worked well I just needed to add an additional ) at the end.