Hi All, I am trying to integrate Power Apps into Power BI using the standard approach, but I’m facing an issue while passing selected row data. My setup and problem are as follows: I have added the Power Apps visual to a Power BI report. I added the required column names from the dataset into the Power Apps visual. I either created a new app or selected an existing app from the Power Apps visual. In the Power BI report, I have a table visual, and I select a single row from that table. Inside Power Apps: I use CountRows(PowerBIIntegration.Data) and it correctly returns 1 when a single row is selected. I also use JSON(First(PowerBIIntegration.Data), JSONFormat.Compact) to convert the selected row into a string so I can visualize the data. However, after publishing the report and selecting a row in the table visual: The row count in Power Apps correctly shows 1 But the JSON output in the text label is coming as a blank JSON object {} My question is: Why does PowerBIIntegration.Data show 1 row but return an empty JSON object {} for the selected record? What conditions or configurations could cause Power Apps to receive the row context without any column data? Are there any known limitations related to storage mode (Import vs DirectQuery), relationships, or Power Apps visual schema caching that could lead to this behavior? My storage Mode is Import Any insights or suggestions would be greatly appreciated. Thanks in advance!