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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
yakovlol
Resolver I
Resolver I

Measure in Page level Filter no way to do calculated column

Hello!
I have created WHAT IF parameter on my page. Based on this parameter and value in it  i want to unfilter values on my page.

But it should be dynamically based on what if value, so no way to created a calculated column that would be dynamically changing.

And the measure is really simple it gives me 0 or 1 

 

 

var minvalue = min('Parameter'[Parameter])
var maxvalue = max('Parameter'[Parameter])
VAR currentvalue = 
  VALUE([Sales])
return
IF(
    ISBLANK(currentvalue), 
    BLANK(), 
    IF(currentvalue <=  maxvalue, 0, 1)
)

 

 

I have more than 8  different visuals on my page, and i want theam all dinamiccaly changing based on parametr, but cannot find a solution to put this filter on Page level

Will be much appriciated for any ideas.

3 REPLIES 3
audreygerred
Super User
Super User

Hi! Measures can only be used in visual level filters. They cannot be used in page or all page level: Applying a measure filter in Power BI - SQLBI. In page and all page level, only columns can be used as filters.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Thank you @audreygerred But if is there any way to do a calculated column dynamically I mean to make a calculated column based on WHAT IF parameter, or slicer selection?

Anonymous
Not applicable

Hi @yakovlol 

In Power BI, calculated columns are static and do not change dynamically based on slicer selections or WHAT IF parameters. 

 

 

 

 

 

 

Best Regards,

Jayleny

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors