Hi there,
Quick question?
If I want to ADD a new item to be displayed in the ticketType as follow:
All tickets
New tickets
Tickets in progress
Tickets on hold "To be replace with Tickets PAst Due"
Tickets closed
Tickets older than 3 days
Tickets opened today
Tickets closed today
Tickets Past Due
I have modified the following:
If(ThisItem.TicketTypes="All tickets",UpdateContext({type:"All"}),If(ThisItem.TicketTypes="New tickets",UpdateContext({type:"New"}),If(ThisItem.TicketTypes="Tickets in progress",UpdateContext({type:"In progress"}),If(ThisItem.TicketTypes="Tickets closed",UpdateContext({type:"Closed"}),If(ThisItem.TicketTypes="Tickets Past Due",UpdateContext({type:"Past Due"}))))));If(ThisItem.TicketTypes="Tickets older than 3 days",UpdateContext({datetype:Text(DateAdd(Today(), -3)),type:"Tickets older than 3 days"}),If(ThisItem.TicketTypes="Tickets closed today",UpdateContext({datetype:Text(Today()),type:"Tickets closed today"}),If(ThisItem.TicketTypes="Tickets opened today",UpdateContext({datetype:Text(Today()),type:"Tickets opened today"}))))
Biut I cannot get nothing not an empty box once is selected, it keeps the last selection saved.
What I have missing?
