Sheet name from range

  • Thread starter Thread starter avi
  • Start date Start date
A

avi

Hello,

I have a range address that contains the workbookName+SheetName. How
do I extract the sheet name only?

Certainly a trivial question...

Thanks
avi
 
Hello,

I have a range address that contains the workbookName+SheetName. How
do I extract the sheet name only?

Certainly a trivial question...

Thanks
avi

Hi
Is the text in one cell?
How are the weorkbook and sheet names differentiated i.e. how do you
know where one starts and one finishes?
If there is a plus sign between them as in your example then

=RIGHT(A1,LEN(A1)-FIND("+",A1))

where your text is in cell A1, will find the sheetname.

regards
Paul
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top