Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to count all the tickets that were created yesterday using the column CREATED DATE
Please send the expression, I am thinking of using the today()-1 function
hey jose,
why don't you try
vDate=date(today()-1)
count({<createdDate={"$(vDate)"}>}distinct [incident number])
cheers,
kunal bhattacharjee
Write below just below [Created Date] in script
Date(Floor(TimeStamp([Created Date])),'DD/MM/YYYY') as CreatedDate,
Now use below Expression in Front End
=COUNT({<CreatedDate = {'$(=Date(Today()-1),'DD/MM/YYYY')'}>}Distinct Ticket#)
Thanks Manish, I followed your instructions, however the value is always 0.00 when I see some records from the previous day. What am I doing wrong?
LOAD
"Incident Number",
"Destination System Reference Number",
"Date Occurred",
"Incident Created Date",
Date(Floor(TimeStamp([Incident Created Date])),'DD/MM/YYYY') as CreatedDate,
"Last Modified Date",
COUNT({<CreatedDate = {'$(=Date(Today()-1),'DD/MM/YYYY')'}>}Distinct [Incident Number])
hey jose,
why don't you try
vDate=date(today()-1)
count({<createdDate={"$(vDate)"}>}distinct [incident number])
cheers,
kunal bhattacharjee
let me know the date format of Incident Create Date
Thanks Kunal and Manish, I tried the vDate and it is working now, MUCHAS GRACIAS!
hey jose,
can you please mark the correct answer and helpful answer and close the thread? that would be helpful!
cheers,
kunal bhattacharjee