Forum Discussion
senthil9324
8 years agoFrequent Visitor
Need help in creating Histogram chart in power BI
Hi Guys, I am new to power BI !!! I have below data and I want to prepare histogram chart as shown below. I also like to slice and dice the histogram with filter like week range and segment. ...
- 8 years ago
Hi senthil9324,
You just need to add a calculate column:
Number of Order Created Modified = SWITCH(Table1[Number of Order Created], 1, "1~2", 2, "1~2", 3, "3~")
Regards,
Jimmy Tao
Anonymous
8 years agoNot applicable
Hey senthil9324
You easily create a histogram using an R visual. I made a quick video on this here:
https://www.youtube.com/watch?v=nePWIVgHobs
There are also a couple custom visuals for histograms that you can try.
Hope this helps,
Parker
stuckerj
Helper I
3 years agoThe default R script that runs removes duplicate rows from the data, which defeats the purpose of a histogram. Any suggestions?