Forum Discussion

spmvoss's avatar
spmvoss
Regular Visitor
6 years ago
Solved

Running Total Without Reset

I have a dataset with the hours worked for multiple projects on each day.

I want a line and column chart that displays the hours worked on a certain project (selected from slicer) with year - week as the shared axis as well as a cumulative line.

 

I know how to get this to work when using just the date,  however, when I create a running total based off the week, it resets each year. How would I prevent this from happening?

 

The only sort of sulution I have found was creating a YearWeek column, e.g. 201901, 201902 etc. However this is not ideal for displaying the axis.

 

My current DAX (that resets every year):

 

 

Hours running total in Week of Year = 
CALCULATE(
	SUM('MAMUT'[Hours]),
	FILTER(
		ALLSELECTED('MAMUT'[Week of Year]),
		ISONORAFTER('MAMUT'[Week of Year], MAX('MAMUT'[Week of Year]), DESC)
	)
)

 

 

Thank you for your time!

 

 

 

  • spmvoss's avatar
    spmvoss
    6 years ago

    amitchandak 

     

    Thank you for your reply.

    I did manage to get it to work with the YYYYWW format, but found it to be less nice on the UI side of things if I plot it in a bar graph (with the Year and Week of Year combination I can nicely collate them).

     

    But I think I will just have to live with that and go for the YYYYWW solution.

     

    Thank you!

2 Replies

    • spmvoss's avatar
      spmvoss
      Regular Visitor

      amitchandak 

       

      Thank you for your reply.

      I did manage to get it to work with the YYYYWW format, but found it to be less nice on the UI side of things if I plot it in a bar graph (with the Year and Week of Year combination I can nicely collate them).

       

      But I think I will just have to live with that and go for the YYYYWW solution.

       

      Thank you!