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! Learn more
Hello,
i would like to calculate the number of customer based on customer code but exclude those customer name consist of "GOL -". May i know am i missing anything in the measurement?
Solved! Go to Solution.
You can create a DAX measure as follows:
Omni_No. of Customers =
CALCULATE(
DISTINCTCOUNT('Omni Sales Data'[Customer Code]),
FILTER(
ALL('Omni Sales Data'),
LEFT('Omni Sales Data'[Customer Name] , 3) <> "GOL"
)
)This measure calculates the distinct customer code, excluding customers with "GOL" prefix. Here is the solution screenshot:
As you can see, I have total 6 disticnt customers (ID is unique), but, 4 customers without the "GOL" prefix (as expected). Let me know if this solved your issue.
Best Regards,
Udit
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudo 👍
🚀 Let's Connect: LinkedIn || YouTube || Medium || GitHub
✨ Visit My Linktree: LinkTree
You can create a DAX measure as follows:
Omni_No. of Customers =
CALCULATE(
DISTINCTCOUNT('Omni Sales Data'[Customer Code]),
FILTER(
ALL('Omni Sales Data'),
LEFT('Omni Sales Data'[Customer Name] , 3) <> "GOL"
)
)This measure calculates the distinct customer code, excluding customers with "GOL" prefix. Here is the solution screenshot:
As you can see, I have total 6 disticnt customers (ID is unique), but, 4 customers without the "GOL" prefix (as expected). Let me know if this solved your issue.
Best Regards,
Udit
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudo 👍
🚀 Let's Connect: LinkedIn || YouTube || Medium || GitHub
✨ Visit My Linktree: LinkTree
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 23 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |