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 have a table with values ranging from blank, 0, 100, 200.... and so forth.
I would like to create a measure that displays my how many values that are >=10000 (with a date slicer separate).
I have for now made this dax measure which works fine.
Solved! Go to Solution.
@Irwin You should close parenthesis in the first CALCULATE:
Measure =
IF (
CALCULATE (
COUNTA ( 'Table'[Row] ),
FILTER ( ALL ( 'Table'[Row] ), 'Table'[Row] >= 10000 ) )
= BLANK ()
),
0,
CALCULATE (
COUNTA ( 'Table'[Row] ),
FILTER ( ALL ( 'Table'[Row] ), 'Table'[Row] >= 10000 )
)
)
You are right of course. **bleep**... I moved those parenthesis around so much already 😉
Thank you for helping! 🙂
@Irwin You should close parenthesis in the first CALCULATE:
Measure =
IF (
CALCULATE (
COUNTA ( 'Table'[Row] ),
FILTER ( ALL ( 'Table'[Row] ), 'Table'[Row] >= 10000 ) )
= BLANK ()
),
0,
CALCULATE (
COUNTA ( 'Table'[Row] ),
FILTER ( ALL ( 'Table'[Row] ), 'Table'[Row] >= 10000 )
)
)
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!