What condition is used to print the invoice data from the selected date?

Screenshot%20(120) In the if activity what condition is used to print the invoice data from the selected date in invoices to the excel sheet??

@sriramvarma

Please check the following link -

Regards,
Karthik Byggari

@KarthikByggari

Thank you for your suggestion I have already checked data time and variables topic,but here I am getting the data of invoices from the acme website, in this data I need to append the invoice details after the specified date(2017-06-20) in to the excel sheet…if possible help me out with code.

@sriramvarma

For example:

Assign activity :variable parameterDate = DateTime.ParseExact(“06/20/2017”, “MM/dd/yyyy”)
Assign activity: variable todaysDate = DateTime.Today;

if(parameterDate < todaysDate)
{
}

Regards,
Karthik Byggari