Forum Discussion
Chris2409
Apr 23, 2024Copper Contributor
Comparing multiple cells, if one cell has value, then name this cell another cell
Hi All, I am tracking manufacturing of items for a project. I have multiple variations of the same object. Example: I allocate which office cubicle is needing a particular type of filing cabinet. ...
- Apr 23, 2024
Hi there!
Try to use this in cell B5:
=OFFSET(INDIRECT(CELL("address",INDEX(C5:G5,MATCH(1;C5:G5,0)))),-2,0)
Change your ranges accordingly. The thing here is that you should change the row offset for each of the B column cells. That is, for B6, you should put -3 in the offset row count.
Martin
MAngosto
Iron Contributor
Hi there!
Try to use this in cell B5:
=OFFSET(INDIRECT(CELL("address",INDEX(C5:G5,MATCH(1;C5:G5,0)))),-2,0)
Change your ranges accordingly. The thing here is that you should change the row offset for each of the B column cells. That is, for B6, you should put -3 in the offset row count.
Martin
Chris2409
Apr 23, 2024Copper Contributor
Thanks Martin. I have put it in. Did get an error to start with, I changed the formal to;
...MATCH(1,C5:G5,0... (comma instead of the semi colon)
...MATCH(1,C5:G5,0... (comma instead of the semi colon)