Forum Discussion
sandeep_sharma
Helper II
3 years agoCount of Workable Inventory
Hi All, I need to count unbilled workable Ticket no. on the 1st of every month. Below is the data where we have received the date, expiration date, and billed date. A ticket number is workable in...
- 3 years ago
Hi sandeep_sharma
Please refer to attached sample file with the proposed solutionCount = COUNTROWS ( FILTER ( 'Table', MAX ( 'Table'[Received Date], 'Table'[Expiredate] ) <= MIN ( 'Date'[Date] ) && COALESCE ( 'Table'[Billed Date], TODAY ( ) ) >= MIN ( 'Date'[Date] ) ) ) - 3 years ago
sandeep_sharma
YesCount = COUNTROWS ( FILTER ( ALL ( 'Table' ), MAX ( 'Table'[Received Date], 'Table'[Expiredate] ) <= MIN ( 'Date'[Date] ) && COALESCE ( 'Table'[Billed Date], TODAY ( ) ) >= MIN ( 'Date'[Date] ) ) )
Anonymous
3 years agoNot applicable
HI sandeep_sharma,
According to your description, It seem like a common multiple date fields analysis requirement. For this scenario, I'd like to suggest you take a look at the following blog 'start date', 'end date' parts if helps:
Regards,
Xiaoxin Sheng