Hi Team,
i am getting below error while trying to remove empty columns in DT, could anyone help on this
Hi Team,
i am getting below error while trying to remove empty columns in DT, could anyone help on this
Try the below LINQ Expression,
ExtractDataTable.Columns.Cast(Of DataColumn).Select(Function(c) dt.AsEnumerable.All(Function(r) r(c) is Nothing orelse String.IsNullOrEmpty(r(c).ToString)) ).toList()
Replace the where with select function, it will works fine.
Regards
Getting Back a List of Datacols, where all Datacolumn Values are empty we can do
Assign Activity
ColList | List(Of DataColumn) =
ExtractDataTable.Columns.Cast(Of System.Data.DataColumn).Where(Function(c) dt.AsEnumerable.All(Function(r) isNothing(r(c)) OrElse String.IsNullOrEmpty(r(c).ColumnName)) ).toList()
we just used the full Qualified Name
looks like you are forking wrong.
let us know what is the overall goal. Is it about checking which cols do have all rows empty column value and then remove it from the datatable?
i am working with some data extraction or scraping a data table from a desktop application, i am getting different outputs in unstructured format and hence trying to see the poosible solution if it can be automated or not
DTTypes.xlsx (9.2 KB)
PFA once
this code is working, i could have initiated new thread for the other issue… sorry for confusion.
Ok, so lets clear.
so lets get closed this topic by
Forum FAQ - How to mark a post as a solution - News / Tutorials - UiPath Community Forum
and we will continue the support on the other topic
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.