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...
tamerj1
Community Champion
3 years agoHi sandeep_sharma
Please refer to attached sample file with the proposed solution
Count =
COUNTROWS (
FILTER (
'Table',
MAX ( 'Table'[Received Date], 'Table'[Expiredate] ) <= MIN ( 'Date'[Date] )
&& COALESCE ( 'Table'[Billed Date], TODAY ( ) ) >= MIN ( 'Date'[Date] )
)
)sandeep_sharma
Helper II
3 years ago