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! Learn more
Attempting to filter out column based on if a column is greater than or equal to a column.
My dax measure is
Filter chart= if(column) => (column),1,0
The reason it won't filter out is because it doesn't known the measure is based on a per day basis. How can I add per day in the statement?
Thank you
@Dalylah_23 , Try like
a new column = if( [column1] >= [column2],1,0)
or
a new measure = sumx(table,if( [column1] >= [column2],1,0))
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 |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |