Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I would like to concatenate cell values to create a name that corresponds to
a worksheet name and then use that in a formula. Does anyone know how to do this? |
#2
![]() |
|||
|
|||
![]()
You can use:
=a1&a2 to concatenate a couple of cells. To refer to that in another formula, you'd need something like: =indirect("'" & a1&a2 &"'!A1") or if there's a chance your concatenated string refers to a non-existing worksheet and you want to avoid a #ref! error, you can check first: =IF(ISERROR(CELL("address",INDIRECT("'"&A1&A2&"'!a 1"))),"missing", INDIRECT("'"&A1&A2&"'!a1")) (all one cell) XLDabbler wrote: I would like to concatenate cell values to create a name that corresponds to a worksheet name and then use that in a formula. Does anyone know how to do this? -- Dave Peterson |
#3
![]() |
|||
|
|||
![]()
sample:
=Sheet2!B4 So in general WORKSHEETNAME!CELL would work in formulas. "XLDabbler" wrote: I would like to concatenate cell values to create a name that corresponds to a worksheet name and then use that in a formula. Does anyone know how to do this? |
#4
![]() |
|||
|
|||
![]()
Thank you, Dave! That was exactly what I needed!
"Dave Peterson" wrote: You can use: =a1&a2 to concatenate a couple of cells. To refer to that in another formula, you'd need something like: =indirect("'" & a1&a2 &"'!A1") or if there's a chance your concatenated string refers to a non-existing worksheet and you want to avoid a #ref! error, you can check first: =IF(ISERROR(CELL("address",INDIRECT("'"&A1&A2&"'!a 1"))),"missing", INDIRECT("'"&A1&A2&"'!a1")) (all one cell) XLDabbler wrote: I would like to concatenate cell values to create a name that corresponds to a worksheet name and then use that in a formula. Does anyone know how to do this? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Get other sheet names into a column | Excel Worksheet Functions | |||
Excell:Move from any Cell Sheet 1 to any cell Sheet 2 etc. | Excel Worksheet Functions | |||
Copy cell format to cell on another worksht and update automatical | Excel Worksheet Functions | |||
how to create a variable column in cell reference | Excel Worksheet Functions | |||
Copy text from same cell on every sheet to title sheet? | Excel Discussion (Misc queries) |