Report not sending reports correctly

I have set up a report (i also copied it about 40 times to run it every 15 minutes) and it does not run or it is not capturing the data correctly to send the email.

I set the Reports (multiple reports) to run at 8, 8:15, 8:30 etcโ€ฆ

My โ€œIf this is trueโ€ expression is:
AND([Closed_Status] = โ€œOpenโ€,[Creation_Date] >= TIMENOW() - โ€œ0:15:00โ€)

I did this to have the report look at the table ( Ticket Log ) and look at two conditions- Is [Closed_Status] = โ€œOpenโ€ and is [Creation_Date] equal to or less than 15 minutes ago ( i did this to make it ONLY see the last โ€œopenโ€ tickets in the 15 minutes.

This report sent me (as i am testing with my email) the correct email - but at 12 AM - they all sentโ€ฆ

Thoughts?

0 9 607
9 REPLIES 9

Steve
Platinum 4
Platinum 4

Please post a screenshot of the report configuration (for only one!) in the app editor. Please also post a screenshot of the first page of that reportโ€™s template.

What is the column type from the Creation_Date column?

DateTime

The problem is this:

[Creation_Date] >= TIMENOW() - โ€œ0:15:00โ€

[Creation_Date] is a DateTime but TIMENOW() - โ€œ0:15:00โ€ is a Time. Try this instead:

[Creation_Date] >= (NOW() - โ€œ000:15:00โ€)

Hi Steve,

Creation_Date is a DateTime column.

Thanks Steve - ill try this nowโ€ฆ

Of Course right now there are NO new ticketsโ€ฆ

Just an Update - It is working perfectly now!

Thanks again

Top Labels in this Space