Status Snapshot

TwinJohnson

New Member
Joined
Jul 15, 2021
Messages
11
Office Version
  1. 365
  2. 2011
Platform
  1. Windows
Hello,
I'm building a view that captures a snapshot on a particular day. I have a date table that contains all the dates Mon-Sunday from 2019-2030.
On any given day orders are in a status of pick, ship, invoice in which I've applied a flag for each time the status of each order has changed which allows a view of what's happening today. Yesterday we had 101 orders drop, 50 in pack, 50 in ship status, 1 invoiced. Tomorrow the same order may be in the same or different status but cumulatively rolling sums.

What I'm trying to see is on each of the dates Jan 1, 2019-March 28, 2023 (today), count how many orders were in each of these statuses on "that particular day" in the date table (not what status they are today). I've tried several measures and cannot seem to get the snapshots.

Measure:
Open Order = VAR date_to_examine =
MAX('Rolling Date'[DateField])
VAR NUMBER_ORDERS =
CALCULATE(
DISTINCTCOUNT('2020 Log'[Order No]),
KEEPFILTERS(date_to_examine > '2020 Log'[Date of Initial Drop]),
KEEPFILTERS(date_to_examine < '2020 Log'[Date Comp.])
)
RETURN
IF(ISBLANK(NUMBER_ORDERS),0,NUMBER_ORDERS)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
also tried this measure

SNAPSHOT PICKED NOT SHIPPED =
CALCULATE(
SUM('2020 LOG' [PICKED NOT SHIPPED FLAG]),
FILTER(
ALL ('DATE TABLE'[DateField]),
'DATE TABLE' [DateField] <= MAX( 'DATETABLE'[DateField])
)
)

Thank you,
Tawnee
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number

Forum statistics

Threads
1,214,827
Messages
6,121,818
Members
449,049
Latest member
cybersurfer5000

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top