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
Hey there;
I have an issue, I need that the measure sums only the positive vales
But when I use the switch statement to replane the negatives values with zero, works in the same way when sum the values
What I need is the following result:
I can't do it in a calculated colum because I'm using what-if parameter in the DAX formula.
Solved! Go to Solution.
@Syndicate_Admin,[inven. Suggested] is a column
try a new measure
sumx(Table, if(Table[inven. Suggested] >0, Table[inven. Suggested] , blank()))
if [inven. Suggested] is a measure
sumx(values(Table[material]), if([inven. Suggested] >0, [inven. Suggested] , blank()))
@Syndicate_Admin,[inven. Suggested] is a column
try a new measure
sumx(Table, if(Table[inven. Suggested] >0, Table[inven. Suggested] , blank()))
if [inven. Suggested] is a measure
sumx(values(Table[material]), if([inven. Suggested] >0, [inven. Suggested] , blank()))
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 71 | |
| 50 | |
| 47 | |
| 44 |