Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello all
I have a table that lists, for example, Customers, with each Customer record having an attribute to say whether or not they've made a purchase.
Customer ID | Purchase Made?
========================
0001 | Yes
0002 | Yes
0003 | No
0004 | No
0005 | Yes
0006 | Yes
I want a Measure (at least I think that's what I need) showing the number of Customers where Purchase Made = Yes, as a percentage of the total number of customers.
I'm fairly new to DAX, so any help would be appreciated.
Thanks
Chris
Solved! Go to Solution.
How about building the Measure you need like this
as Rob Colie says "Never write the same formula twice!"
Total Customers = DISTINCTCOUNT ( Table[CustomerID] )
Number of Customers (who made a Purchase) = CALCULATE ( [Total Customers], FILTER ( Table, Table[Purchase Made?] = "Yes" ) )
% of Customers who made a Purchase =
DIVIDE ( [Number of Customers (who made a Purchase)], [Total Customers], 0 )
Also take a look here for future reference if you need to add additional conditions later on
https://www.sqlbi.com/articles/filter-arguments-in-calculate/
Hope this helps!
How about building the Measure you need like this
as Rob Colie says "Never write the same formula twice!"
Total Customers = DISTINCTCOUNT ( Table[CustomerID] )
Number of Customers (who made a Purchase) = CALCULATE ( [Total Customers], FILTER ( Table, Table[Purchase Made?] = "Yes" ) )
% of Customers who made a Purchase =
DIVIDE ( [Number of Customers (who made a Purchase)], [Total Customers], 0 )
Also take a look here for future reference if you need to add additional conditions later on
https://www.sqlbi.com/articles/filter-arguments-in-calculate/
Hope this helps!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
119 | |
83 | |
47 | |
42 | |
33 |
User | Count |
---|---|
190 | |
79 | |
72 | |
52 | |
46 |