Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi I am new to PowerBi and I have a data set with two columns: date and action type(ABC, DEF, GHI). I am interested to find the percent change in the ABC action type through the years with the forumla of ABC/(DEF+GHI), but how would I go about calculating that and then doing a line graph? Specifically with the line and clustered column chart.
Solved! Go to Solution.
@Anonymous ,
You may try adding measure below.
Measure = DIVIDE ( COUNTROWS ( FILTER ( Table1, Table1[type] = "ABC" ) ), COUNTROWS ( FILTER ( Table1, Table1[type] IN { "DEF", "GHI" } ) ) )
@Anonymous ,
You may try adding measure below.
Measure = DIVIDE ( COUNTROWS ( FILTER ( Table1, Table1[type] = "ABC" ) ), COUNTROWS ( FILTER ( Table1, Table1[type] IN { "DEF", "GHI" } ) ) )
User | Count |
---|---|
131 | |
71 | |
70 | |
58 | |
54 |
User | Count |
---|---|
194 | |
95 | |
65 | |
62 | |
53 |