I'm new to Smartsheet and I'm trying to use an IF statement to pull data from another sheet based on "true" criteria.
I want to look up a reference in a sheet based on an application name, and if it is true, I want to return the site # based (on the same reference sheet, different range), otherwise it returns "None". I have done this successfully in Excel many times, but I cannot get it to work in Smartsheet (#Invalid Operation).
I've tried it using 2 separate reference ranges (as shown below--I'm using specific columns within the reference sheet here), as well as a broader range using column #s).
What am I doing wrong?
SmartSheet:
=IF({Reference Range 1-SystemType} = "AppName", {Reference Range 2-SiteName},"NONE")
Excel:
=IF(Table_1[SystemType]="AppName",Table_1[SiteName],"NONE")