Forum Discussion
Anonymous
5 years agoNot applicable
Create column chart from SharePoint Online list with data modelling
Hi, I am new to Power BI. My data set looks like this: I want my column graph to look like this: How do I achieve this? Thanks in advance for all the help.
- 5 years ago
Anonymous , No pets on axis and a measure
measure = count(Table[Pets]) on values should do
If you want a table
new Table =
summarize(Table, Table[pets], "Count", count(Table[Pets]))
Anonymous
5 years agoNot applicable
Hi amitchandak ,
But in order to achieve this, I think my data source should look like this:
How do I model it in this way?
amitchandak
5 years agoSuper User
Anonymous , No pets on axis and a measure
measure = count(Table[Pets]) on values should do
If you want a table
new Table =
summarize(Table, Table[pets], "Count", count(Table[Pets]))
- Anonymous5 years agoNot applicable
amitchandak Thanks a ton! Worked perfectly.