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
I have a measure that shows below values in grid.
"Stock Exc/Def" is not the column its a measure. I want to filter the values and want to get the values that are -ve. I don't want to use visual level filter. I want to do it only by creating a new measure. How can I do this?
I have tried the following but failed.
Stock Exc/Def Less than zero = CALCULATE([Stock Exc/Def], FILTER('myTable', [Stock Exc/Def] < 0))
Solved! Go to Solution.
=IF (
[Stock Exc/Def] < 0,
[Stock Exc/Def],
BLANK ( )
)
=IF (
[Stock Exc/Def] < 0,
[Stock Exc/Def],
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!