Hi,
To find out how many days I needed to solve my ticket, I use this formula:
Select Case DateDiff("d",{Object.Creation Date}, {Object.Solved Date})
Case 0
formula="Same Day"
Case 1 to 5
formula="1day-5days"
Case 5 to 10
formula="5days-10days"
Case 10 to 15
formula="10days-15days"
Case 15 to 20
formula="15days-20days"
Case Else
formula="over 20days"
End select
How can I avoid to count Saturday and Sunday too?
andré
To find out how many days I needed to solve my ticket, I use this formula:
Select Case DateDiff("d",{Object.Creation Date}, {Object.Solved Date})
Case 0
formula="Same Day"
Case 1 to 5
formula="1day-5days"
Case 5 to 10
formula="5days-10days"
Case 10 to 15
formula="10days-15days"
Case 15 to 20
formula="15days-20days"
Case Else
formula="over 20days"
End select
How can I avoid to count Saturday and Sunday too?
andré