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
Anonymous
Not applicable

Dynamic Filters

For example, I have a column A with numbers, and I want to calculate +/- X% of Column A. I would like two have two slicers one as a drop for X% (5%, 10%, 15%, etc) and another slicer which will give me the range of (Column A - X% * Column A) -- (Column A + X% * Column A)
Could someone help me with this? TIA!
6 REPLIES 6
v-jayw-msft
Community Support
Community Support

Hi @Anonymous ,

 

Are you saying that if i select 5% in slicer it will returen both value * (1+5%) and value * (1-5%), if i select 10% in slicer it will returen both value * (1+10%) and value * (1-10%)?

If so you could create a table and measures as below.

Measure = SELECTEDVALUE('Table'[A])*(1+SELECTEDVALUE(slicer[+%]))

Measure 2 = SELECTEDVALUE('Table'[A])*(1+SELECTEDVALUE(slicer[-%]))

1.PNG 

Result would be shown as below.

3.PNG

2.PNG

If i misunderstood your meaning, please show more details.

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.
Anonymous
Not applicable

@v-jayw-msft so I did create a table to show something similar to what you have done. Let's say I have a KeyID associated for every record in that table, so I want to first select a single KeyID and when  I do that I want a Slicer that can represent  lower bound (Measure) and the upper bound (Measure 2)

 

 

Something like this

 
 

For now, the slicer is not Dynamic, it just gets the Max and Min value of Column A. Would be nice to have it dynamic.

 

 

Anonymous
Not applicable

image.png

amitchandak
Super User
Super User

@Anonymous , Can you share sample data and sample output in table format?

Anonymous
Not applicable

Would this suffice @amitchandak ?

 

 

A+10%-10%
10119
20

22

18
303327

 

ashes2076_1-1597823234423.png 

ashes2076_2-1597823256349.png

 

 

 

@Anonymous , if the slicer is on % column

 

measure =
var _max =selectedvalue(slicer[value])
return
calculate(sum(Table[A])*(1+_max))

 

Absolute number

 

measure =
var _max =selectedvalue(slicer[value])
return
calculate(sum(Table[A])*((1+_max)//100))

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.