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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
PowerUser3
New Member

How to create multiple parameters to be used in Power BI Paginated Reports?

Hello all,

 

I am trying to set up multiple parameters inside Report Builder and I want the parameters to be optional however that is not working at the moment. I have employee name and manager name but I don't want to have to select both. and can it be dynamic to where if you select employee name first in parameter it will show manager name automatically in parameter drop down?

7 REPLIES 7
v-tsaipranay
Community Support
Community Support

Hi @PowerUser3 ,

 

I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions.

 

Thank you.

v-tsaipranay
Community Support
Community Support

Hi @PowerUser3 ,

 

I wanted to follow up on our previous suggestions. We would like to hear back from you to ensure we can assist you further.

 

Thank you.

v-tsaipranay
Community Support
Community Support

Hi @PowerUser3 ,

 

Thanks for the clarification. Since you're using a Snowflake view without custom SQL, you can still achieve optional cascading parameters by configuring filters within Report Builder. First, ensure your parameters allow nulls or include an "All" option in the parameter dataset (e.g., using UNION SELECT NULL).

Then, instead of modifying the SQL, apply filters at the dataset level using expressions like =IIF(IsNothing(Parameters!EmployeeName.Value), True, Fields!EmployeeName.Value = Parameters!EmployeeName.Value) for both Employee and Manager.

For cascading behavior, set a filter on the Manager parameter dataset to respond to the selected Employee using similar logic.This setup maintains dynamic dropdowns while keeping both parameters optional, all without changing the underlying Snowflake view.

Hope this helps. Please reach out for further assistance.

 

Thank you.

v-tsaipranay
Community Support
Community Support

Hi @PowerUser3 ,

Thank you for reaching out to the Microsoft Fabric Community.

 

The guidance and links provided by @PijushRoy  are useful for configuring cascading parameters in Paginated Reports, where one parameter filters another.

If you want both parameters to be optional while keeping the cascading functionality, make sure your parameter datasets allow a default or "All" option (like NULL or a custom label). In your main dataset query and cascading logic, include conditions such as:

WHERE (@Employee IS NULL OR EmployeeName = @Employee)

This method enables users to choose one, both, or neither of the parameters, while still ensuring that dynamic filtering works when a parameter is selected.

Hope this helps. Please reach out for further assistance.

 

Thank you.

I am not using custom sql, I am connecting to a view via Snowflake. 

PijushRoy
Super User
Super User

Hi @PowerUser3 

Create Dynamic Cascading parameter in Paginated reporthttps://www.youtube.com/watch?v=GxKy18nFQFE 

Please find the detail post here https://learn.microsoft.com/en-us/power-bi/guidance/paginated-report-cascading-parameter

https://www.youtube.com/watch?v=gmkrEecNiiA

https://www.youtube.com/watch?v=nkR0VU8-euw&pp=ygUTI2Nhc2NhZGluZ3BhcmFtZXRlcg%3D%3D

 

You 




Did I answer your question? Mark my post as a solution!
Appreciate your Like/Kudos

Proud to be a Super User!





How do I do this inside of Power Query? I am connected to a view via Snowflake.


Is there no way to just let the report handle multiple drop down filters more easily?

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors