Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
First post here and I've tried searching a few things and I am sure this has been asked but I wasn't sure what the right terms were. Thank you for all your help so far!
I have a sample table below which looks like this:
Invoice#Test1Test2Country
1 | 1 | 0 | US |
2 | 0 | 0 | US |
3 | 0 | 0 | US |
4 | 0 | 0 | US |
5 | 0 | 0 | Can |
6 | 0 | 1 | Can |
7 | 1 | 1 | US |
8 | 1 | 0 | US |
9 | 1 | 0 | US |
10 | 0 | 0 | US |
11 | 1 | 1 | US |
12 | 1 | 0 | US |
13 | 0 | 0 | Can |
14 | 0 | 1 | Can |
15 | 1 | 1 | Can |
I am looking to create a bar chart that would show the number of 1s in Test 1 and Test 2. So the axis of the chart would show Test1, Test2, while the value of each bar would be the count of 1s or sum of the Test1/2 column. I can summarize the values into another table but I found that I lost the ability to use a slicer on the country column - this is just a sample data set and the real data set has multiple values I would need to use slicers with so I would need a way to dynamically summarize, which I was not able to find.
Thank you for your help!
Solved! Go to Solution.
Hi @Anonymous,
Do you want to get the output below?
If it is, you could folloe the steps below.
1. We need do some change for your data model in Query Editor. Upivot columns Test1 and Test2, then you will get the table like below.
2. Apply and Close. Create the measure with the formula below.
mea = CALCULATE(COUNTROWS('Table1'),FILTER('Table1','Table1'[Value]=1))
3. Create the Bar chart with Attribute as Axis and measure as value.
More details, you could refer to the attachment.
If you still need help, please share your desired output so that we could help further on it.
Best Regards,
Cherry
Hi @Anonymous,
Do you want to get the output below?
If it is, you could folloe the steps below.
1. We need do some change for your data model in Query Editor. Upivot columns Test1 and Test2, then you will get the table like below.
2. Apply and Close. Create the measure with the formula below.
mea = CALCULATE(COUNTROWS('Table1'),FILTER('Table1','Table1'[Value]=1))
3. Create the Bar chart with Attribute as Axis and measure as value.
More details, you could refer to the attachment.
If you still need help, please share your desired output so that we could help further on it.
Best Regards,
Cherry
Can you please explain how you made the changes to the data in the query?
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
73 | |
71 | |
54 | |
38 | |
31 |
User | Count |
---|---|
71 | |
64 | |
62 | |
50 | |
46 |