
Announcements
You're on the right track by integrating Power BI with PowerApps for writeback to SQL — this is a powerful pattern! Let's walk through the steps to ensure everything works smoothly:
You want to:
In Power BI:
Id, Name, etc.) to PowerApps using the visual’s data fields pane.In PowerApps:
PowerBIIntegration.Data.✅ Important: You don’t need to import Excel — use PowerBIIntegration.Data directly.
In PowerApps:
Add a Gallery or Form to display PowerBIIntegration.Data.
Add a Dropdown control inside each row or form item:
Items = ["Good", "Bad"]
Bind the selected value to a variable or directly to a field.
To write feedback to SQL:
Id, Feedback.Patch function to update the SQL table:Patch(
'[dbo].[FeedbackTable]',
LookUp('[dbo].[FeedbackTable]', Id = ThisItem.Id),
{ Feedback: Dropdown1.Selected.Value }
)
✅ Make sure:
| Issue | Fix |
|---|---|
| PowerBIIntegration.Data not showing | Ensure fields are passed into the PowerApps visual |
| Dropdown not saving | Use Patch or UpdateIf with correct SQL connection |
| SQL write fails | Check permissions and data types in SQL table |