Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello Community,
I need the negative sign (-) in Pieces Out and Order shipped values to be removed. The total value displaying is not accurate as well.
See my measures formula:
Cheers.
Solved! Go to Solution.
Hi @Anonymous ,
Please have a try.
Create a measure.
measure=
var _b = SUMMARIZE('table','table'[month],"aaa",'table'[Pieces Out])
return
IF(HASONEVALUE('table'[month]),'table'[Pieces Out],SUMX(_b,[aaa]))measure_ordershipped=
var _b = SUMMARIZE('table','table'[month],"aaa",'table'[Orders Shipped])
return
IF(HASONEVALUE('table'[month]),'table'[Orders Shipped],SUMX(_b,[aaa]))
I have also found a helpful post, please refer to it to see if it helps you.
If it does not help, please provide your pbix file without privacy information and more details with your desired output.
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Please have a try.
Create a measure.
measure=
var _b = SUMMARIZE('table','table'[month],"aaa",'table'[Pieces Out])
return
IF(HASONEVALUE('table'[month]),'table'[Pieces Out],SUMX(_b,[aaa]))measure_ordershipped=
var _b = SUMMARIZE('table','table'[month],"aaa",'table'[Orders Shipped])
return
IF(HASONEVALUE('table'[month]),'table'[Orders Shipped],SUMX(_b,[aaa]))
I have also found a helpful post, please refer to it to see if it helps you.
If it does not help, please provide your pbix file without privacy information and more details with your desired output.
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you
@Anonymous ,
Try like
sumx(Values(Date[Month]), Pieces Out = IF ( MIN ( 'Table Name'[Column] ) < 0, MIN ( 'Table Name'[Column] ), BLANK () ) )
Refer to video from Curbal- If needed
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!