Hi,
I need to read only the rows which content is not empty for one column and only for that column, not care about other columns close by… any idea?
Hi,
I need to read only the rows which content is not empty for one column and only for that column, not care about other columns close by… any idea?
Hi @mz3bel
can you given read range and in for each row in dt
use if condition
String.IsNull or empty(row(“Column1”).ToString or String.IsNullorEmptyWhitespace(row(“Column1”)
Then use it as log message and in else condition process the row
Thanks
Ashwin S
Not realy what i’m looking for, the thing is i have many rows. For example the email column has like 2 mails, if i want to send email depending on the column list, it will send email as like all the full rows have mail adresses, not like just for the 2 first rows only, it’s sends blank for the others. So i get error…
Use FIlter data table activity
Good morning Mz3bel, @MuralidharVankamaddi has the right idea.
Use the “Filter Data Table” activity, enter your datatable + column name and then select “Is Not Blank” from the dropdown menu to only retain/process populated rows.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.