Hi @JoshL5 ,
Could you please show more details about your scenario?
Do you want to apply the LookUp function to multiple Excel tables? Do these multiple Excel table have same data structure?
Regarding the needs that you mentioned, I think your thought is in right direction. The If function could achieve your needs. On your side, you could choose different Excel table as the first argument in the LookUp function against different conditions.
The sample formula may looks as below:
LookUp(
If( // choose different data source based on differnt condition
DataSourceOption = "Option1",
Table1,
DataSourceOption = "Option2",
Table2,
DataSourceOption = "Option3",
Table3
),
FilteredColumn = "xxxxx"
)
Please try above solution, hope it could solve your problem.
Regards,