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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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