Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello,
I'm trying my journey with dax and i step into issue which i can't find a solution...
I have table with CityLocation and Value and want count number of CityLocation where value is > 0.
For below result it should be 2.
I can get eaisly count of CityLocation where Value is >0 however how i can count unique City ?
| CityLocation | Value |
| Torotno1 | 0 |
| Toronto1 | 3 |
| NewYork2 | 0 |
| Toronto3 | -1 |
| Denver1 | 0 |
| Denver2 | 1 |
Solved! Go to Solution.
@joshua3m
I can assume from your code that Value is a measure. In this case please try
COUNT =
COUNTROWS (
DISTINCT (
SELECTCOLUMNS (
FILTER ( VALUES ( 'Table'[CITYLOCATION] ), [VALUE] > 0 ),
"City", LEFT ( 'Table'[CITYLOCATION], LEN ( 'Table'[CITYLOCATION] ) - 1 )
)
)
)
Hi @joshua3m
Please try
Count =
CALCULATE ( DISTINCTCOUNT ( 'Table'[CityLocation] ), 'Table'[Value] > 0 )
Hi Tamerj ,
Would this not calculate distinct only for CityLocation where i want actually look into City and not City Location combine ?
I was trying to do as below:
COUNT:
COUNTROWS(
FILTER(
ADDCOLUMNS(
VALUES(LEFT([CITYLOCATION],LEN[CITYLOCATION]-1),
"STOCK" , ([VALUE])
),
[STOCK] >0
)
)
@tamerj1 wrote:Hi @joshua3m
Please try
Count =
CALCULATE ( DISTINCTCOUNT ( 'Table'[CityLocation] ), 'Table'[Value] > 0 )
@joshua3m
I can assume from your code that Value is a measure. In this case please try
COUNT =
COUNTROWS (
DISTINCT (
SELECTCOLUMNS (
FILTER ( VALUES ( 'Table'[CITYLOCATION] ), [VALUE] > 0 ),
"City", LEFT ( 'Table'[CITYLOCATION], LEN ( 'Table'[CITYLOCATION] ) - 1 )
)
)
)
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 22 | |
| 10 | |
| 10 | |
| 7 | |
| 5 |