Dear experts,
I will compare today date is 27 with and excel column name today date is 27?
Could anyone help me please?
Thanks in Advance
Dear experts,
I will compare today date is 27 with and excel column name today date is 27?
Could anyone help me please?
Thanks in Advance
Thanks for the help @Manohar1.
Still i’m getting this error
my current date is this date formula Convert.ToInt32(now.ToString(“dd”))
The resultant variable data type should be of system.datetime
How to take the column name (DATE) from the excel?
Inside For each row
use Assign activity and include the Column Date in it.\
columnDate=DateTime.ParseExact(row(“column name”).ToString(),“MM/dd/yyyy hh:mm:ss”,System.Globalization.CultureInfo.CurrentUICulture.DateTimeFormat)
In row(“Column name”) give your date column name
now use if condition and do compare of
current date=columnDate
can you please post the screen shot of date column in Excel
Thanks & Regards
Om Prasad
Main.xaml (7.5 KB)
Thanks for the help @Manohar1.
How can i find column name date is 27 ?
i need current date till record only in excel sheet
rest of the 28,29,30 column name date is should be removable
row(“Date”).ToString=currentDate is that ok?
This will give your current date as “27” string.
System.DateTime.Now.Date.Day.ToString
in place of row(“date”).toString use row(“currentDate”).toString
While using Read range activity click on add headers property it will include the first line as headers.
Main.xaml (40.0 KB)