OKCMikeSoll
MIS
I have a report that is count the number of tickets based off of {TICKET.OPEN_TIME}. I would like to use a cross-tab for this report. I have started a formula to split the count up by day, WTD, MTD, and YTD, the problem is that when it counts a ticket under MonthToDate, it does not count it for YearToDate like I need it. Here is the formula below:
if {TICKET.OPEN_TIME} in CurrentDate-1 then "Daily"
else if {TICKET.OPEN_TIME} in WeekToDateFromSun then "WTD"
else if {TICKET.OPEN_TIME} in MonthToDate then "MTD"
else if {TICKET.OPEN_TIME} in YearToDate then "YTD"
This may be a dumb question but is there someting like an "else/and" operator? Any assistance would be most appreciated!
Thanks,
Mike
if {TICKET.OPEN_TIME} in CurrentDate-1 then "Daily"
else if {TICKET.OPEN_TIME} in WeekToDateFromSun then "WTD"
else if {TICKET.OPEN_TIME} in MonthToDate then "MTD"
else if {TICKET.OPEN_TIME} in YearToDate then "YTD"
This may be a dumb question but is there someting like an "else/and" operator? Any assistance would be most appreciated!
Thanks,
Mike