I have a project currently piloting to update census numbers in animal cages. The formula I have pulls from another sheet and populates the data into the rooms of the same name. The problem I have discovered is there are some spaces that have two cage types we track, but my formula does not account for this.
This is what is in the source sheet.
The current formula:
=IFERROR(INDEX({Census Admin Range 1}, MATCH([Bldg-Room]@row, {Census Admin Range 2}, 0)), "")
This is what the formula populates to the destination, Basically it is putting the number from the "Oblong" cage type in both.
This formula grabs the census numbers from the source sheet and populates them into the column of the target sheet based on [Bldg-Room0. Due to the extra layer I also need to match [Species/Cage/EO] I tried the following which did not work.
=IFERROR(INDEX({Census Admin Range 1}, MATCH([Bldg-Room]@row + [Species/Cage/EO]@row, {Census Admin Range 2}, 0)), "")
I tried a couple other variations and I got a message saying smartsheet could not MATCH to multiple columns?
I feel like this is so easy I am missing what's right in front of me or it isn't possible…
Thanks for any suggestions.