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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
darshaningale
Resolver II
Resolver II

Add a cumulative total in line graph

I have the below sample data to be shown in line chart.

I am able to show the count of Hostname with respect to Type in line chart.

However i want to show one more line which will show the cumulative of all the sum of counts.

 

HostTypeDate
20.164.249.166Low3/25/2023
20.164.176.76Medium2/13/2021
20.164.192.126Medium7/22/2022
20.164.246.8Medium5/8/2021
20.164.246.82Critical4/7/2023
20.164.192.50Low4/1/2020
10.8.0.42Critical3/22/2023
20.164.246.7Medium9/24/2020
20.164.253.10Critical4/8/2023
20.164.184.98Critical3/16/2023
20.164.180.118High4/24/2020
20.164.180.143High4/24/2020
1 ACCEPTED SOLUTION

I have created seperate measures of each "Type" and also created one measure for Cumulative total and added all the measures in the line chart.

Instead of using the "Type" in Legend section.

View solution in original post

5 REPLIES 5
rajulshah
Super User
Super User

@darshaningale 
Please create a measure using the below DAX function:

Total Count of Host =
CALCULATE ( COUNT ( Host[Host] ), ALL ( Host[Type] ) )

 

You would get the following output:

rajulshah_0-1682570878555.png

Please let me know if this didn't work.

I also want to show count of each Type in the line graph.

So there would be one line each for "High" ,"Medium", "Critical" , "Low" in addition to cumulative total.

Spoiler
darshaningale_0-1682571747989.png

i have these counts. i need one more count which shows cumulative total.

@darshaningale 

 

You can use the following DAX:

Total Count of Host =
CALCULATE ( COUNT ( Host[Host] ), ALL ( Host ) )

I have created seperate measures of each "Type" and also created one measure for Cumulative total and added all the measures in the line chart.

Instead of using the "Type" in Legend section.

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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