Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi guys!
I need help with something that seems so simple but I just can't figure it out. Please help me.
I have a row with columns that gives me values from 0 and up. I want to create a measure that only gives me the results that are 40 or higher. How can I create a simple DAX function that gives me the ability to only present the cases that have a value of 40 or higher?
Example of my columns and rows are:
Case type Value(weight)
Incident 0
Incident 40
Near miss 380
Incident 2
Near miss 0
Thank you ❤️
Are you saying you want to return rows where value > 39?
In this case, it's not a measure you create but a table
New Table = FILTER(oldtable, oldtable[Value(weight)] > 39)
Hi!
I want to return rows that are 40 or higher.
Ok so I should add a new table with the following ; New Table = FILTER( Casetype,casetype[Value(Weigth)] >39)) ?
Thank you!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |