rolling dates
4 TopicsRollup the date based on condition
Hello Everyone I would like to achieve the rollup for each Category - with the max date where color is not equal to red Below is the sample data - I am getting the wrong highlighted dates - (it should filter out the date where it is red) Result Expected For highlighted date- A - 11/18/2021 B - 10/11/2021 Thanks in advance. Would really appreciate the help.Solved1.1KViews0likes4CommentsAdding 2 custom lines to line and stacked column chart
I currently have a pareto chart by number of cases per event date. I'm trying to add a rolling 7 day average calculation to this but I keep getting: Where I was hoping to have something like this? I'm currently running my 7 day rolling average by [Event Date]: 7 Day Rolling Average - Notification Date = CALCULATE(SUM('Sheet1'[Epi Date Count]),DATESINPERIOD('Sheet1'[Event Date],LASTDATE('Sheet1'[Event Date]),7,DAY)) / CALCULATE(DISTINCTCOUNT('Sheet1'[Event Date]),DATESINPERIOD('Sheet1'[Event Date],LASTDATE('Sheet1'[Event Date]),7,DAY)) Is there any way this can be done? Thanks in advance Please find file attached https://www.dropbox.com/s/c3hfci8jabydxv1/Pareto.pbix?dl=02KViews0likes4CommentsRunning Average in a Matrix Visualization
I've looked at several rolling average posts, but none of them seem to fit my situation and data. Let's say I have this in a table: Client WeekEndDate Charges Client A 4/4/2020 123 Client B 4/4/2020 198 Client C 4/4/2020 164 Client A 4/11/2020 111 Client B 4/11/2020 164 Client C 4/11/2020 192 Client A 4/18/2020 133 Client B 4/18/2020 94 Client C 4/18/2020 114 Client A 4/25/2020 160 Client B 4/25/2020 133 Client C 4/25/2020 141 Client A 5/2/2020 101 Client B 5/2/2020 124 Client C 5/2/2020 164 Client A 5/9/2020 138 Client B 5/9/2020 169 Client C 5/9/2020 111 What I'm ultimately looking for is a rolling average I can display in a matrix. Desired outcome: 4/11/2020 4/18/2020 4/25/2020 5/2/2020 5/9/2020 Charges 467 341 434 389 418 Rolling 14 Charges 952 808 775 823 807 Rolling 14 Average Daily Chagres 68 57.7 55.4 58.8 57.6 I started here, which feels close: AverageCharges14Days = calculate( sum('Table1'[Charges]), filter ( all ( 'Table1'[WeekEndDate] ), 'Table1'[WeekEndDate] <= max('Table1'[WeekEndDate]) && 'Table1'[WeekEndDate] > ( max('Table1'[WeekEndDate])-14) ) )/14 That method works if I want to do a 7 day average, since each column header is 7 days. When I make it 14 days, though, it just gives me half the 7 day value. I can tell it's simply not including the previous week's Charges in the sum() function, so I guess the filter(all()) isn't what I need. Can someone help me get to the desired outcome?Solved1.5KViews0likes3CommentsSum Rolling Last 5 rows of dates
Hello everyone, I have an issue and i'm stuck. I try to make a sum of PTS of the last fives dates. As you can see, it's rolling by the following dates. For the rows 5,4,3,2,1 . I'm just making a cumulate until I have 5 rows of dates. Thanks a lot for your help. Regards KevinSolved1.7KViews0likes3Comments