Level 1
Level 2
Melden Sie sich an, um alle Badges zu sehen
Hi,
How to calculate no. of working days for an issue in a issue report as column?
I have created a new custom date field called as "Original Request Date".
I have two conditions expected to be together in one text code;
1) Issue open since: If (Entry Date) less than ((Original Request Date) show value (Current Date) – (Entry Date))
2) If (Original Request Date) less than ((Entry Date) show value (Current Date) – (Original Request Date))
Looking your help and guidance.
Have a nice day.
BR
Kundan.
Gelöst! Gehe zu Lösung.
Zugriffe
Antworten
Likes gesamt
You can use nested if statements to do this.
valueexpression=IF({entryDate}<{DE:Original Request Date},WEEKDAYDIFF({entryDate},$$TODAY),IF({DE:Original Request Date}<{entryDate},WEEKDAYDIFF({DE:Original Request Date},$$TODAY)))

Zugriffe
Antworten
Likes gesamt
You can use nested if statements to do this.
valueexpression=IF({entryDate}<{DE:Original Request Date},WEEKDAYDIFF({entryDate},$$TODAY),IF({DE:Original Request Date}<{entryDate},WEEKDAYDIFF({DE:Original Request Date},$$TODAY)))

Zugriffe
Antworten
Likes gesamt
Thanks @KellieGardner ,
1) Is it possible to consider only Week days?
2) One additional request, if we want in no. of weeks, how to edit this code?
Please suggest.
Have a nice day!
Zugriffe
Antworten
Likes gesamt
It should be set to do weekdays utilizing the WEEKDAYDIFF already.
This formula would calculate the number of whole weeks between dates you could work this into the formula provided.
CEIL(DATEDIFF(Field A,Field B)/7)

Zugriffe
Antworten
Likes gesamt
Zugriffe
Likes
Antworten
Zugriffe
Likes
Antworten