I used Data Shuttle to populate two columns in one of my smartsheets (Region & Building) from another smartsheet.
I want to further refine for example: If Region = Americas it only pulls in Americas buildings. If Region = EMEA it only pulls in EMEA buildings. I tried doing an IF AND with Vlookup but that that becomes unparseable. Has anyone does this successfully?
IF(AND(VLOOKUP([Region@row]="Americas", {Report Range 1}, 2, false)),
IF(AND(VLOOKUP([Region@row]="EMEA", {Report Range 1}, 2, false)),
IF(AND(VLOOKUP([Region@row]="APAC", {Report Range 1}, 2, false)),
IF(AND(VLOOKUP([Region@row]="India", {Report Range 1}, 2, false)))