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 want to show on my report, the number of customers that have only used data, and not voice, neither SMS.
The 1st measure, gives me the Number of customer that used data, but might have also used voice and sms.
The 2nd measure I tried to show only the customer who used data. No sms, and no voice. But I'm getting the exactly same result, and not really sure what I'm missing. Can you please help?
Solved! Go to Solution.
Hi @ROG
It is just a bracket order issue. Please try
No ofCustomers (Data Usage-ONLY) =
CALCULATE (
DISTINCTCOUNT ( FA_PROFIT_LOSS[SUBSCRIBER_SR_KEY] ),
FA_PROFIT_LOSS[DATA_VOLUME] <> 0
&& NOT ( ISBLANK ( FA_PROFIT_LOSS[DATA_VOLUME] ) )
&& FA_PROFIT_LOSS[CALL_DURATION] = 0
&& FA_PROFIT_LOSS[SMS] = 0
)
Hi, @ROG
You can try the following formula.
No of Customers (Data Usage) =
CALCULATE (
DISTINCTCOUNT ( FA_PROFIT_LOSS[SUBSCRIBER_SR_KEY] ),
FILTER (
ALL ( FA_PROFIT_LOSS ),
FA_PROFIT_LOSS[DATA_VOLUME] <> 0
&& NOT ( ISBLANK ( FA_PROFIT_LOSS[DATA_VOLUME] ) )
)
)
and
No ofCustomers (Data Usage-ONLY) =
CALCULATE (
DISTINCTCOUNT ( FA_PROFIT_LOSS[SUBSCRIBER_SR_KEY] ),
FILTER (
ALL ( FA_PROFIT_LOSS ),
FA_PROFIT_LOSS[DATA_VOLUME] <> 0
&& NOT (
ISBLANK ( FA_PROFIT_LOSS[DATA_VOLUME] )
&& FA_PROFIT_LOSS[CALL_DURATION] = 0
&& FA_PROFIT_LOSS[SMS] = 0
)
)
)
If it doesn't solve your problem, can you provide sample data for testing? Sensitive information can be removed in advance. What kind of expected results do you expect? You can also show it with pictures.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @ROG
It is just a bracket order issue. Please try
No ofCustomers (Data Usage-ONLY) =
CALCULATE (
DISTINCTCOUNT ( FA_PROFIT_LOSS[SUBSCRIBER_SR_KEY] ),
FA_PROFIT_LOSS[DATA_VOLUME] <> 0
&& NOT ( ISBLANK ( FA_PROFIT_LOSS[DATA_VOLUME] ) )
&& FA_PROFIT_LOSS[CALL_DURATION] = 0
&& FA_PROFIT_LOSS[SMS] = 0
)
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!
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 21 | |
| 10 | |
| 8 | |
| 8 |