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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
szenatti
New Member

Default value in Report Filter Panel

Hi All,

 

I have a requirement to set default values in a Country filter and also set Current Month as default.

 

How can I do it in PowerBI?

 

Thanks,

 

Sergio 

1 ACCEPTED SOLUTION
v-qiuyu-msft
Community Support
Community Support

Hi @szenatti,

 

Currently, we are not able to set Report level filter based on current month directly, as DAX is not available in Report Level filter panel. To workaround the issue, we can create a calculated column via expression below:

 

Column = IF(MONTH(Table1[Date])=MONTH(NOW()) && YEAR(Table1[Date])=YEAR(NOW()),"current month","")

 

Then drag this column field to Report Level filter panel, check "current month" as default. You can also drag the Country field to Report Level Filter, then check a prefer value as default.

 

q2.PNG

 

The way is similar to the method in this article: Finding the Latest Date in Power BI Desktop.

 

If you have any question, please feel free to ask.

 

Best Regards,
Qiuyun Yu

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-qiuyu-msft
Community Support
Community Support

Hi @szenatti,

 

Currently, we are not able to set Report level filter based on current month directly, as DAX is not available in Report Level filter panel. To workaround the issue, we can create a calculated column via expression below:

 

Column = IF(MONTH(Table1[Date])=MONTH(NOW()) && YEAR(Table1[Date])=YEAR(NOW()),"current month","")

 

Then drag this column field to Report Level filter panel, check "current month" as default. You can also drag the Country field to Report Level Filter, then check a prefer value as default.

 

q2.PNG

 

The way is similar to the method in this article: Finding the Latest Date in Power BI Desktop.

 

If you have any question, please feel free to ask.

 

Best Regards,
Qiuyun Yu

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-qiuyu-msft

It works fine, but what if user wants to see the data of previous month ? I mean after publishging  the dashboard how user can remove this filter if It is a page level filter?

Anonymous
Not applicable

Since this column is a conditional formating, just replace the "else" condition for the month for the date field:

 

Column = IF(MONTH(Table1[Date])=MONTH(NOW()) && YEAR(Table1[Date])=YEAR(NOW()),"current month",MONTH(Table1[Date]))

ankitpatira
Community Champion
Community Champion

@szenatti if you want filter to be dynamically updated each month then you can't do that for filters but can for slicers. Check out this post on how to do it using slicers.

 

Manual approach will be to set filter for your users and save report. When you share your user will have filter applied saved report. Obviously that means you have to manually change filter each month.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors
Top Kudoed Authors