Here comes an interesting question.
I am trying to display a date from either of the three spreadsheets (iOS iPod Touch or iPhone or Apple Watch). The date is in row 3. I am matching it up to the project number in row. I am using VLOOKUP. I am also using IFERROR, so that the field will only display a date, if a date is there. If not date, the field will be blank (it should not display "not match).
The formula works if I point to just one spreadsheet. But I want to point to either of the three spreadsheets. Is that possible?
Later on, I want to only show the most recent date (not the date furthest down on the spreadsheet, which is what it is currently doing). I tried MAX, but it won't work.
In regards to the first challenge, I tried to enter OR in my formula, but it will not work. Where does OR need to go to make this work?
Thanks, Barbara
=IFERROR(VLOOKUP(OR([Project Number]@row, {DAX iOS iPod Touch Project#}, 3, {DAX iOS
iPhone Inventory Range 1}, 3, {DAX iOS Apple Watch Inventory Range 1}, 3,
" ")))
=IFERROR(VLOOKUP(OR([Project Number]@row, {DAX iOS iPod Touch Project#}, 3, {DAX iOS
iPhone Inventory Range 1}, 3, {DAX iOS Apple Watch Inventory Range 1}, 3), " "))
=IFERROR(VLOOKUP(OR([Project Number]@row, {DAX iOS iPod Touch Project#}, 3, {DAX iOS
iPhone Inventory Range 1}, 3, {DAX iOS Apple Watch Inventory Range 1}, 3)), " ")
=IFERROR(OR(VLOOKUP([Project Number]@row, {DAX iOS iPod Touch Project#}, 3, {DAX iOS
iPhone Inventory Range 1}, 3, {DAX iOS Apple Watch Inventory Range 1}, 3)), " ")
=IFERROR(OR(VLOOKUP([Project Number]@row, {DAX iOS iPod Touch Project#}, 3, {DAX iOS
iPhone Inventory Range 1}, 3, {DAX iOS Apple Watch Inventory Range 1}, 3), " "))
=IFERROR(IF(OR(VLOOKUP([Project Number]@row, {DAX iOS iPod Touch Project#}, 3, {DAX iOS
iPhone Inventory Range 1}, 3, {DAX iOS Apple Watch Inventory Range 1}, 3), " ")))
=IFERROR(IF(OR(VLOOKUP([Project Number]@row, {DAX iOS iPod Touch Project#}, 3, {DAX iOS
iPhone Inventory Range 1}, 3, {DAX iOS Apple Watch Inventory Range 1}, 3)), " "))
=IFERROR(IF(OR(VLOOKUP([Project Number]@row, {DAX iOS iPod Touch Project#}, 3, {DAX iOS
iPhone Inventory Range 1}, 3, {DAX iOS Apple Watch Inventory Range 1}, 3))), " ")