Dear developers, i have a question regarding splitting an excel sheet into multiple sheets based on column value. hereby attached the desired work.
kindly advise if anyone knows. your help is much appreciated. thank you.
Dear developers, i have a question regarding splitting an excel sheet into multiple sheets based on column value. hereby attached the desired work.
Hi,
The following image might help you.
Regards,
Dear @Yoichi , thank you for your response. could you please share the sample workflow? because it does not work in my case. is there any way without hard coding names into a variable… because names might vary, can we assign the names using row(“names”).tostring in this case?
It will work based on string variable like strvar= row(“Name”). ToString
Thanks
Ashwin.S
Take a look at the attached xaml, it will help you
Main.xaml (7.4 KB)
Hello @Yusuf_Rahmaniac
I wrote a simple Linq query for a case similar like yours check this link
Let me know if you didnt get any part !!
Hi,
It’s difficult to share the workflow right now, because i’m out.
You can get array of name dynamically, using the following sentence in Excel Application Scope.
arrNames=dtMaster.AsEnumerable.Select(function(r) r("Name").ToString).Distinct().ToArray()
Regards,
Hi @Yusuf_Rahmaniac,
Regards
Balamurugan.S
Thank you so much, it works like a charm
You’re welcome @Yusuf_Rahmaniac, Happy coding
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.