Forum Discussion
Oros
2 years agoPost Prodigy
Count working days
Hello, I am looking for a measure to count the number of days based on the selected date range in the date slicer. Thanks. I am definitely missing a filter in this measure because the result...
Ashish_Mathur
2 years agoSuper User
Hi,
Ideally, you should create a Calendar Table. Create a relationship (Many to One and Single) from the Posting Date column of the Invoice Table to the Date column of the Calendar Table. Build the slicer from the Date column of the Calendar Table. Write these measures:
Invoices issued = countrows(Data)
Number of days on which invoices were issues = countrows(filter(values(Calendar[date]),[Invoices issued]>0)
Hope this helps.
- Oros2 years agoPost Prodigy
Hi Ashish_Mathur,
Thank you for your reply. The Invoices issued is correct but it looks like the Number of days is NOT correct. Maybe I missed something? Also, is that measure supposed to EXCLUDE the weekends? Thanks again.
- Ashish_Mathur2 years agoSuper User
You are welcome. The date slicer should be built from the Calenar Table.