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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
mheagerty
Frequent Visitor

DAX IF formula for 'numeric range paramater'

Hi, complete noobie here.

I have created a slider/visual using a 'numeric range paramater', where i can select/enter from the range provide (e.g. 1-100)

Im trying to create a new column for my table that uses an IF (less than, greater than) statement between the paramater value and another column in the table. Example:

Test = IF('Parameter'[Paramater Value] < 'Table'[Column],"True","False")

But this doesnt work, no matter what i select in the paramter as a value

If i dont use the paramater, it works fine

Test = IF('Table'[Column] < 0.6,"True","False")

Any help would be appreciated 🙂


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

Hi @mheagerty 

 

The HotChilli advice is sound.

 

If you want 'Table'[Column] to output values based on the slicer's selection, you should use Measure, not Column.

 

And your slicer is a range, which is why your dax doesn't work.

 

You can extract values from the slicer, such as minimum values:

 

Create a measure.

 

Test = 
var _parameter = MIN('Parameter'[Parameter Value])
var _column = SELECTEDVALUE('Table'[Column])
RETURN 
IF(_parameter < _column, "True", "False")

 

Here is the result.

 

vnuocmsft_0-1725852097490.png

 

Regards,

Nono Chen

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

3 REPLIES 3
mheagerty
Frequent Visitor

@v-nuoc-msft @HotChilli  Thank you so much for providing this inofrmation, and in such detail.
This has worked perfectly, and I have also added a second parameter/variable for my measure 🙂




v-nuoc-msft
Community Support
Community Support

Hi @mheagerty 

 

The HotChilli advice is sound.

 

If you want 'Table'[Column] to output values based on the slicer's selection, you should use Measure, not Column.

 

And your slicer is a range, which is why your dax doesn't work.

 

You can extract values from the slicer, such as minimum values:

 

Create a measure.

 

Test = 
var _parameter = MIN('Parameter'[Parameter Value])
var _column = SELECTEDVALUE('Table'[Column])
RETURN 
IF(_parameter < _column, "True", "False")

 

Here is the result.

 

vnuocmsft_0-1725852097490.png

 

Regards,

Nono Chen

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

 

 

HotChilli
Super User
Super User

You can write a measure for this but you can't use a calculated column. They don't change in response to slicers.

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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