I want total count of particular day between two dates For example: If i have start date and end date then need to return total count of days without fridays between these dates.
Question
Question
Answer
SELECTED ANSWER
replied on February 6, 2021
Hi Mahmoud,
You can calculate Fridays count between two dates by calculating difference between the WEEKNUM (Friday mode) of them. Please check description of the function in https://doc.laserfiche.com/laserfiche.documentation/english/docs/Default.htm#../Subsystems/ProcessAutomation/Content/Forms-Current/Formulas.htm#Date/Tim
For example, =WEEKNUM(EndDate,15)-WEEKNUM(StartDate,15) will return the Fridays in between, and =EndDate-StartDate-(WEEKNUM(EndDate,15)-WEEKNUM(StartDate,15)) is count of days without Fridays in between.
2
0
Replies
You are not allowed to reply in this post.
You are not allowed to follow up in this post.