Forum Discussion
guydegrieck
Aug 09, 2020Copper Contributor
Show value of last cell to the left that has a value
Column A has unique references of reports. Columns B to F show versions of those reports, version 1, version 2 etc...... in the cells of columns B to F is a number (4, 7, 2 etc) But not all report...
JMB17
Aug 09, 2020Bronze Contributor
I would assume the version numbers are in ascending order? If so, then perhaps this is what you want?
=MAX(B2:F2)
If that is not the case, then maybe this?
=LOOKUP(MAX(B2:F2)+1,B2:F2)
=MAX(B2:F2)
If that is not the case, then maybe this?
=LOOKUP(MAX(B2:F2)+1,B2:F2)
- guydegrieckAug 09, 2020Copper Contributor
- guydegrieckAug 09, 2020Copper ContributorColumns of versions are in ascending order yes. But MAX gives me the highest value in any of the versions, not necesarily the value of the latest version.
Later versions can have lower values in their cell than previous versions. I dont need the number of the version, I need the value of that. Ersion of the report. The score if you want.- JMB17Aug 09, 2020Bronze ContributorDid you try the second suggestion using Lookup?
- guydegrieckAug 09, 2020Copper Contributor
JMB17 yes, still shows the MAX,not the value of the latest version