Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
nvalPBI
Regular Visitor

Can end users Input parameters in a Power App form and pass it to a Power BI query ?

I am working on a report where I need to pass a date field  to sql query to pull data for the POwer BI report.  Currently date is hard coded and I would like  to change it to a variable which accepts values from a end user through a front end screen or form.  Can I design a power app form with an option to capture the user entered date value ?  and pass it to Power BI query to get the desired set of data.  How to Integrate Power APPs to Power BI to accomplish thsi task. Please help

1 REPLY 1
v-agajavelly
Community Support
Community Support

Hi @nvalPBI 

Yes, you can let users enter a date in a Power App form and use that in Power BI to get specific data. Here’s how it works, in easy steps.

You don’t want to hardcode a date anymore. Instead, you want users to type or pick a date in a form, and then Power BI should use that date to pull the right data.

Try Build a simple form in Power Apps
Add a Date Picker control — this lets users choose a date easily.

  1. When they submit the form, save that date. You can save it in something like:
    • A SQL table (best if your data is already in SQL)
    • A SharePoint list
    • A small Excel file on OneDrive
    • Or Dataverse (if you're using Microsoft’s Dataverse).
  1. In Power BI, connect to that table. Power BI can read the table where the user’s selected date is stored.
  2. Use that date inside your SQL query or filters. When Power BI loads data, it can read the user-entered date and apply it in the SQL or DAX logic to show only the relevant results.
  3. Make it real-time (optional). If you want it to instantly update Power BI when the user picks a new date, you can use DirectQuery or a Power Automate flow to refresh Power BI right after form submission.

After You have a clean form that says.  “Please choose a date to load the report”

The user picks June 1st. You press submit. Boom Power BI loads data just for June 1st. And remember no more editing queries manually.

------------------------------------------------------------------------------------------------------------------------------
If this solution works for you, please consider marking it as accepted so others facing a similar issue can benefit too.

Regards,
Akhil.

 

 

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors