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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Wiene24
Helper II
Helper II

Running total per day based on slicers

After reading a couple of topics I still haven't found the solution to my answer.

What I would like:

 

A running total per day in a line chart.

The line chart should show a different line per day.

The running total is based on time.

 

I now have the following measure:

 

LDM cumulatief =
CALCULATE(SUM('dba Dossier'[DBCalcTotaalLDM]);
FILTER(ALLSELECTED('dba Dossier');
'dba Dossier'[DatumAdd] <= MAX('dba Dossier'[DatumAdd]) &&
YEAR('dba Dossier'[DatumAdd]) = YEAR(MAX('dba Dossier'[DatumAdd])) &&
MONTH('dba Dossier'[DatumAdd]) = MONTH(MAX('dba Dossier'[DatumAdd])) &&
DAY('dba Dossier'[DatumAdd]) <= DAY(MAX('dba Dossier'[DatumAdd]))))
 
But it gives me the following line chart:
 
Wiene24_0-1683210671003.png

 

 

It should reset every day so I can see the sum of the orders based on time.

 

Thanks for the help!

4 REPLIES 4
lbendlin
Super User
Super User

like this ?

lbendlin_0-1683560404908.png

or like this ?

lbendlin_1-1683561059101.png

 

I woud like to have a seperate line for each day, so I can see the differences between the days.

Wiene24
Helper II
Helper II
lbendlin
Super User
Super User

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Solution Authors