Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a table where basically we take a snapshot of a work stack every week, in the table i have the weekend ending date the snapshot was taken and then the date the piece of work came in (this is linked to a master calendar with week ending dates)
I am trying to use the below formula to count the number of new in.
END_OF_WEEK = mater calendar end of week value for when the work came in
WEEKENDING_DATE = the week ending date that the snapshot of the work stack was taken.
COUNT({<END_OF_WEEK = WEEKENDING_DATE>} NOTICE_NUMBER)
Perhaps this?
COUNT({<END_OF_WEEK = {"=END_OF_WEEK =WEEKENDING_DATE"}>} NOTICE_NUMBER)
That only seems to have given me the most recent weeks value, not the total that I can then split out by week to see new pieces of work for each week.
Check this
COUNT({<Your_Primary_Key_Field= {"=END_OF_WEEK =WEEKENDING_DATE"}>} NOTICE_NUMBER)
Or
COUNT({<NOTICE_NUMBER = {"=END_OF_WEEK =WEEKENDING_DATE"}>} NOTICE_NUMBER)
That is now returning a number for every week but they are far too low so it must be missing some for some reason