Currently I have program which Generates Output from a excel like file like this
I want my Output as
Excel File :
test2.xlsx (9.6 KB)
Xaml file :
testnew.xaml (7.9 KB)
Any Answers will be greatly appreciated
Currently I have program which Generates Output from a excel like file like this
I want my Output as
Excel File :
test2.xlsx (9.6 KB)
Xaml file :
testnew.xaml (7.9 KB)
Any Answers will be greatly appreciated
refer to this @Ishan_Shelke1
testnew.xaml (12.0 KB)
logic
join all rows using “/”
joinedString = String.Join("/", dt.AsEnumerable.Select(function(row) row(0).ToString).ToList)
split list by “/” and get distinct values
distinctList = joinedString.Split("/"c).Distinct.tolist()
join list by “,”
distinctListAsString = string.Join(",", distinctList)
output
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.