Hello all,
I'm attempting to create several self-updating sheets fed by a manually updated database sheet. The goal is that it will feed into the multiple other sheets so that we can then give access to smaller groups of people based on which locations are returned by the reference cells. I've been able to successfully create this formula in Excel and have attempted to translate this coding to Smartsheet to no avail. I am not currently very comfortable or knowledgeable with Smartsheet's Syntax or its formula restrictions. I do believe the biggest problems in my Excel formula vs SS translation is that SS doesn't have the "Row" and "Column" formula. I assume there is another way to make this work though! Can you help, please?
Excel formula:
=IFERROR(INDEX('[Test Table]Sheet2'!$A:$O, SMALL(IF('[Test Table]Sheet2'!$A:$A=$R$1, ROW('[Test Table]Sheet2'!$A:$A)-MIN(ROW('[Test Table]Sheet2'!$A:$A))+1, ""), ROW(A1)), COLUMN(A1)),"")
Smartsheet attempted formula:
=IFERROR(INDEX({TEST FROM [Branch]:[Modified By]}, SMALL(IF({TEST FROM [Branch]:[Branch]}=$[Branch References]$1, {TEST FROM [Branch]@row}}-MIN({TEST FROM [Branch]@row}))+1, "") [Branch]@row, [Branch]),"")
Thank you so much!