March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi, this my first post in this forum. I have been searching for a solution all day but no luck. Below is my question
- On a table I have a column called 'sector' that categorises customers to the sectors they work in (eg banking, Financial services....)
- The second column called 'Payment made', indicates whether the customer has made payment ('Yes' if they have and 'No' if they have not)
Question: I want to count for the condition the amount of people that have made payments in each sector, and ultimately plot this measure on the graph.
I already have a graph that generally displays the number of customers in each sector whether they have paid or not. I would like to combine the filtered graph from the new measure above, so that I can compare the total customers in each sector vs. the customers that have paid in this sector.
Please I would really appreciate a solution to this. Thank you
Hola de nuevo.. todo bien pero ahora quiero añadir una tarjeta en la que me sume el total de las visitas que son 0 y no consigo hacerlo.
¿cómo poner en una tarjeta la suma de clientes no visitados o que el valor de la medida es 0?
Grácias de nuevo
@TadeAde2020 , There a few ways. You can use slicers and visual or page level filter
You can use the filter in calculate of X functions
In calculate
Calculate(count(A[B]), A[payment]="Yes", filter2, filter3)
All these filter are and
Calculate(count(A[B]), filter(A, A[payment]="Yes" && A[Mode] = "ABC")
Here you can use && (and) || (Or), the tables should be joined which you are using
If they are not joined, refer
https://docs.microsoft.com/en-us/dax/treatas-function
A table/sample data would be helpful. But the below pseudo code would be how I would approach it with the limited knowledge of what you have:
Total Count =
COUNTX(
FILTER(
Sometable,
sometable[field1] = "this"
&& sometable[field2] = "that"
),
sometable[field1]
)
&& does AND. You can just keep adding other conditions.
Change it to || if you want it to be an OR comparison.
How to get good help fast. Help us help you.
How to Get Your Question Answered Quickly
How to provide sample data in the Power BI Forum
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingMarch 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
134 | |
91 | |
89 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |