Hi,
I am currently working on a helpdesk app, I want to count the number of days the ticket was submitted until it was resolved excluding weekends. It is already working with below code:
RoundDown(DateDiff(D_Submitted.SelectedDate, D_Resolved.SelectedDate, Days) / 7, 0) * 5 + Mod(5 + Weekday(D_Resolved.SelectedDate) - Weekday(D_Submitted.SelectedDate), 5)
However, the counting of days should only start when both field "d_submitted" and d_resolved is populated. Currently it counts the number of days even if 1 field is only populated.
Hoping someone can help me out. Thanks in advance 🙂
Solved! Go to Solution.
Hi @Anonymous
You could wrap your formula inside an 'If' statement so that it only calculates the days when d_submitted and d_resolved are not blank. The formula would look like this:
If( IsBlank(D_Submitted.SelectedDate) || IsBlank(D_Resolved.SelectedDate) , Blank(), RoundDown(DateDiff(D_Submitted.SelectedDate, D_Resolved.SelectedDate, Days) / 7, 0) * 5 + Mod(5 + Weekday(D_Resolved.SelectedDate) - Weekday(D_Submitted.SelectedDate), 5) )
Hi @Anonymous
You could wrap your formula inside an 'If' statement so that it only calculates the days when d_submitted and d_resolved are not blank. The formula would look like this:
If( IsBlank(D_Submitted.SelectedDate) || IsBlank(D_Resolved.SelectedDate) , Blank(), RoundDown(DateDiff(D_Submitted.SelectedDate, D_Resolved.SelectedDate, Days) / 7, 0) * 5 + Mod(5 + Weekday(D_Resolved.SelectedDate) - Weekday(D_Submitted.SelectedDate), 5) )
User | Count |
---|---|
140 | |
135 | |
77 | |
75 | |
70 |
User | Count |
---|---|
222 | |
190 | |
64 | |
62 | |
55 |