Hello,
I have a project where there are multiple items across different tables. Then I made a compiled table (Search) that contains all the item IDs and their corresponding table name. For this table I made an action that opens a scanner that scans an item number, then looks that number up in the compiled table, gets the referenced table name back and jumps to that table with that item ID. Formula below:
linktorow(lower([_THISROW].[ScanID]),lookup([_THISROW].[ScanID],“Search”,“SearchID”,“Table”))
This works, however now I need to do this double lookup without a linktorow, and I can’t seem to find out how to do this as it requires a dynamic dataset, and this is not allowed. Here’s the formula that doesn’t work:
lookup([ScanID],lookup([ScanID],“Search”,“SearchID”,“Table”),“ItemID”,“ItemName”)