Check Sheet Name in Read Range

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