I'm trying to use the powerBIIntegration as input to filter a sql data source. Here is what I'm using which I think is close but I'm missing something syntax wise. Any help would be greatly appreciated. The only field I'm bringing in from powerBI is the 'id' column from the same table I'm doing the look up on. End result of the app is going to be to make some edits to the data in that table with a patch function.
Max(
Filter('UDM.StormData_2_T_1',
id in [@PowerBIIntegration].Data.id
//&& !IsBlank(Class)
)
,Value(Class)
)
I get a delegation warning and it isn't returning any records, even though there should only be 4 records returned with this. When I highlight [@PowerBIIntegration].Data.id with my mouse I see the four IDs that I am looking for, but it doesn't appear to be sending these back to the sql database to look them up.