Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register 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 )
)
)
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 50 | |
| 34 | |
| 32 | |
| 18 | |
| 17 |
| User | Count |
|---|---|
| 64 | |
| 64 | |
| 41 | |
| 27 | |
| 24 |