Hi @anmita ,
To get the sheets name , you can use this activity.
To remove the space in the name
myString = myString.Replace(" ", "")
or
myStr = Regex.Replace(myStr, "\s", "")
Regards
Balamurugan.S
Hi @anmita ,
To get the sheets name , you can use this activity.
To remove the space in the name
myString = myString.Replace(" ", "")
or
myStr = Regex.Replace(myStr, "\s", "")
Regards
Balamurugan.S