i need the sheetname in my cells

  • Thread starter Thread starter Kiklop
  • Start date Start date
K

Kiklop

I am using numbers for sheetnames and I need them in a cell in this way
=VALUE(RIGHT(CELL("filename";A3);2))
Is there any another way to put the sheetname into the cell?
 
Don't know if it's any better:

=MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,255)*1

Biff
 
That means that the sheetname is available only with the CELL function?

Biff said:
Don't know if it's any better:

=MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,255)*1

Biff

Kiklop said:
I am using numbers for sheetnames and I need them in a cell in this way
=VALUE(RIGHT(CELL("filename";A3);2))
Is there any another way to put the sheetname into the cell?
 
Well, you could get it with a VBA user defined function but why would you if
there is a built-in function.

Biff

Kiklop said:
That means that the sheetname is available only with the CELL function?

Biff said:
Don't know if it's any better:

=MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,255)*1

Biff

Kiklop said:
I am using numbers for sheetnames and I need them in a cell in this way
=VALUE(RIGHT(CELL("filename";A3);2))
Is there any another way to put the sheetname into the cell?
 
Thank you.

Biff said:
Well, you could get it with a VBA user defined function but why would you
if there is a built-in function.

Biff

Kiklop said:
That means that the sheetname is available only with the CELL function?

Biff said:
Don't know if it's any better:

=MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,255)*1

Biff

I am using numbers for sheetnames and I need them in a cell in this way
=VALUE(RIGHT(CELL("filename";A3);2))
Is there any another way to put the sheetname into the cell?
 
You're welcome!

Biff

Kiklop said:
Thank you.

Biff said:
Well, you could get it with a VBA user defined function but why would you
if there is a built-in function.

Biff

Kiklop said:
That means that the sheetname is available only with the CELL function?

Don't know if it's any better:

=MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,255)*1

Biff

I am using numbers for sheetnames and I need them in a cell in this way
=VALUE(RIGHT(CELL("filename";A3);2))
Is there any another way to put the sheetname into the cell?
 

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