View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Elkar Elkar is offline
external usenet poster
 
Posts: 964
Default Insert text in a formula

Use the INDIRECT function:

=INDIRECT(A1&"!A5")

If any of your sheet names contain spaces, you'll need to add single quotes,
like this:

=INDIRECT("'"&A1&"'!A5")

Shown here with additional spaces for clarification (do not include these
spaces): " ' " & A1 & " ' !

HTH,
Elkar


"petbi" wrote:

I have an excel-file with a lot of sheets named ADB, AS, BM etc.

In the first sheet I'm collecting data from the sheets above.
In this sheet the first collumn contains the names of the sheets in the
file.
In the next collumn I'm going to show data from the other sheets. For
instance I use the command =ADB!A5.

Is it possible to get the 'ADB' from the first collumn, so I can copy the
formula?????

I'm thinking of something like this:

=A2!A5 (where A2 contains the text 'ADB').

T