Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
adriaXIII
Regular Visitor

column chart with 5 separate pieces of data

 

Hi, 

 

 I wish to create a column chart with 5 separate pieces of data from a dataset.

 

excel table.png

 

So, I have Fields named: - Bebidas azucaradas, bebidas no azucaradas, bebidas isotónicas, bebidas energéticas. These 5 fields are the answer to a multichoice question (what kind of non-water beveradges do you drink?). 

 

I wish the column chart to show these as 5 separate columns with a gapin-between. Each column should show the recount of "Yes" and "No" answers. Whenever I try, I amb either getting them stacked on top of one another (using the stacke version), or right next to each other (using the clustered), without the headings/tiles below. 

 

picture bi forum.png

 

Many thanks, 

 

Adrià

1 ACCEPTED SOLUTION
sturlaws
Resident Rockstar
Resident Rockstar

Hi, @adriaXIII 

 

one way of doing this is to unpivot your table, either in the query to the source or in Powerquery/Advanced editor(using the Unpivot Columns-function of the Transform ribbon).

 

Your table should then look like this

AttributeValue
question 1si
question 1no
question 1 no
and so on 

 

The columns can be renamed to e.g. Question and Answer.

Now create two measures:

 

positive answer = CALCULATE(COUNTROWS(answers);filter(answers;answers[Answer]="Si")) 
Negative answer = CALCULATE(COUNTROWS(answers);filter(answers;answers[Answer]="No")) 

 

and add the questions and the measures to a chart like this:
Capture.PNG

 

Cheers,
Sturla

If this post helps, then please consider Accepting it as the solution. Kudos are nice too.

View solution in original post

1 REPLY 1
sturlaws
Resident Rockstar
Resident Rockstar

Hi, @adriaXIII 

 

one way of doing this is to unpivot your table, either in the query to the source or in Powerquery/Advanced editor(using the Unpivot Columns-function of the Transform ribbon).

 

Your table should then look like this

AttributeValue
question 1si
question 1no
question 1 no
and so on 

 

The columns can be renamed to e.g. Question and Answer.

Now create two measures:

 

positive answer = CALCULATE(COUNTROWS(answers);filter(answers;answers[Answer]="Si")) 
Negative answer = CALCULATE(COUNTROWS(answers);filter(answers;answers[Answer]="No")) 

 

and add the questions and the measures to a chart like this:
Capture.PNG

 

Cheers,
Sturla

If this post helps, then please consider Accepting it as the solution. Kudos are nice too.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

August Carousel

Fabric Community Update - August 2024

Find out what's new and trending in the Fabric Community.