I am trying to embed a Power App into a Power BI report, and use toher visuals to filter the Power App display. Following the syntax in the PowerApps Custom visual guidance, I came up with the following
Items property: LookUp('Long Term Deferrals',Title=First(PowerBIIntegration.Data).EVENT_NAME)
returns me the expected Title that matches the EVENT_NAME field in the Power BI PowerApp visual. However, if I add a ReductionFormula in an attempt to display a different field from that record, I get an error.
LookUp('Long Term Deferrals',Title=First(PowerBIIntegration.Data).EVENT_NAME,Display_x0020_Name)
"The property expects Table values, but this rule produces incompatible Text values."
Any suggestions?