How to Read Column in Excel Please help

Hi,

i want to Read Columns in Excel and Read Date Only Please help

-no empty values
-Select Date only
This my Flow and Excelfile

Hi @punnipah

Inside the For each activity.

Use if activity

Not String.IsNullOrEmpty(currentitem)

Then - use log message activity it will print the date

Regards
Gokul

Inside the loop use if condition and in the condition give currentrow(0).tostring.length>0
if length >0 then do your needful process

Regards

Sreejith S S

Not working

Hi @punnipah

Try with is expression in the if activity

System.Text.RegularExpressions.Regex.IsMatch(currentitem,"\b\d{2}\W\d{2}\W\d{4}\b")

Regards
Gokul

1 Like

Thank you very much ^^

1 Like

So sorry i try it again not working

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.