Forum Discussion
Calendar working days
Hello,
I'm pretty much a newby.
I would like to make a calendar, where the days of the weekend have the same daynumber as friday.
Saterday and sunday = daynumer friday, monday = friday + 1, tuesday = monday plus 1 etc.
Awaiting your reply.
Kind regards,
Jeroen
JeroenP , refer to my blog Traveling Across Workdays - What is next/previous Working day
https://community.powerbi.com/t5/Community-Blog/Travelling-Across-Workdays-Decoding-Date-and-Calendar-4-5-Power/ba-p/1187766Saturday and Sunday have a date of Friday.
you can create a column
Working days = VAR _count=CALCULATE(COUNTROWS('Table 2'),FILTER('Table 2','Table 2'[weekday]=1&&'Table 2'[Date]<=EARLIER('Table 2'[Date]))) REturn if(_count>1,'Table 2'[Calendar days]-_count+1,'Table 2'[Calendar days])please see the attachment
3 Replies
- ryan_mayuSuper User
you can create a column
Working days = VAR _count=CALCULATE(COUNTROWS('Table 2'),FILTER('Table 2','Table 2'[weekday]=1&&'Table 2'[Date]<=EARLIER('Table 2'[Date]))) REturn if(_count>1,'Table 2'[Calendar days]-_count+1,'Table 2'[Calendar days])please see the attachment
- amitchandakSuper User
JeroenP , refer to my blog Traveling Across Workdays - What is next/previous Working day
https://community.powerbi.com/t5/Community-Blog/Travelling-Across-Workdays-Decoding-Date-and-Calendar-4-5-Power/ba-p/1187766Saturday and Sunday have a date of Friday.
- JeroenPFrequent Visitor
Thanks for your support.
This is what I was looking for
Jeroen