running-totals
1 TopicTable showing running total up until last Tuesday vs this week.
Hi all! I wanted to show last week vs this week for running totals. I've created a custom 'Date' table that will contain all days. measure_running_total_this_week = CALCULATE ( SUM ( data_table[net_quantity] ), FILTER ( ALL ( 'Date' ), ISONORAFTER ( 'Date'[Date], MAX ( 'Date'[Date] ), DESC ) ) ) 1. How do I modify the formula above to get the running total SUM up until last week? 2. How do get the running total up until last week TUESDAY? I assume I have to modify the filtered table in RED but I can only provide a table as the parameter. Or do I modify the GREEN line and filter for MAX date - 1 week? My goal is to show a table with LAST WEEK vs THIS WEEK for running total.926Views0likes1Comment