Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Team,
I am facing a issue on showing less than 1day tickets(<1day) .
I am using Today() and submit date i.e I need to show the tickets which was opened by only Today.
I used the below expression ..
If(Today()-Submit_Date< 1,Dual('<1 Day', 1)
Here I am getting issue like I am getting tickets which was raised by today and as well as Yesterday But I need to show only the tickets which was raised by today.
Can any one please assist me in this?
Thanks,
Chinnu.
Hi Chinnu,
Try:
If(Floor(Today()) = Floor(Submit_Date),Dual('<1 Day', 1))
Cheers
Andrew
It should be as below:
If(Today()-Submit_Date=1,Dual('<1 Day', 1))
What is your dateformat for Submit_Date here ? I mean is that 'MM/DD/YYYY' ?
Or use = 0. IF (Today() - Submit_Date = 0, Dual('<1Day', 1)
Hi Vishu,
My date format is m/dd/yyyy.
I used above condition but its not working..
Hi Thirimala,
I used that condition but its not working as expected
Thanks,
Chinnu.
Can you share a sample data or app to look into.? It works fine with some dummy data i created at my end.
Hi Chinnu,
Try:
If(Floor(Today()) = Floor(Submit_Date),Dual('<1 Day', 1))
Cheers
Andrew
Hi Andrew,
Thanks it working Correctly,
Thanks for your time
Thanks,
Chinnu.
Hi Chinnu,
You're very welcome!
Kind regards
Andrew