Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin 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.
hi dears
i want to create clustered column chart
i have the below data
i need to insert two columns chart to compare between car type (
in the first column i need to insert all cars and exclude Nissan
in the second column i need to insert Nissan and exclude the rest of the cars
how do i do that? ( i dont want to insert filter )
Solved! Go to Solution.
Thank you for your prompt reply! @Anonymous
Hi @anglefbi11
You'll need to create two DAX measures to calculate the values for each of your columns. The first measure will sum up the values for all cars except Nissan, and the second measure will sum up the values for Nissan only.
All Cars Except Nissan = CALCULATE(SUM('Table'[value]), 'Table'[Cars] <> "nissan")
Nissan only = CALCULATE(SUM('Table'[value]), 'Table'[Cars] = "nissan")
Result:
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you for your prompt reply! @Anonymous
Hi @anglefbi11
You'll need to create two DAX measures to calculate the values for each of your columns. The first measure will sum up the values for all cars except Nissan, and the second measure will sum up the values for Nissan only.
All Cars Except Nissan = CALCULATE(SUM('Table'[value]), 'Table'[Cars] <> "nissan")
Nissan only = CALCULATE(SUM('Table'[value]), 'Table'[Cars] = "nissan")
Result:
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
godbless you brother . it work 100 % thank you very much
each visual on a page can have its own filter. See in the Filter pane to Filter on Visual
hi thank you for your reply
it wont work
because if you could see i have only one column for data.
i need to inseret two clustered column column in the same visual
so when i use the visual filter it will not work as i expect
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
59 | |
56 | |
38 | |
29 |
User | Count |
---|---|
82 | |
62 | |
45 | |
41 | |
40 |