How to modify Get Queue Items activity properties?

I want to get all queue items of current day from 00:00 to 23:59. How to set this in properties dynamically? Default is from AM12:00 >>. How to modify this so that it starts at 00:00>> DateTime.Now.ToString(“MM/dd/yyyy”).

Still haven not figured this out…

If you want to provide a variable, click on the plus sign and choose “Open in Advanced Editor”.

Hi,

Here is the solution.

start_Date = DateTime.Now.Date
end_Date = DateTime.Now.Date.AddDays(1).AddSeconds(-1)
image

1 Like