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.

Dax to get the Values with in the selected range

Hi all,

 

I Have  raw data like Item and  its Cost . I need to get the results based on the % and Selected Value like if i Select 10% and Cost as 50/- then, It should show the components with cost  between  45 to 55 . Is there any possibility of  that?

Components Threshhold.png

 

Thanks in advance,

Vishnu Priya

Status: New
Comments
v-chuncz-msft
Community Support

@AnilKumar 

 

You may add what-if parameters first, then drag measure below to Visual level filters and set Show items when the value is 1.

Measure =
IF (
    ABS ( SUM ( 'Table'[Value] ) / 'Parameter Value'[Parameter Value Value] - 1 ) <= 'Parameter Percent'[Parameter Percent Value],
    1
)