1

Say in an Excel spreadsheet I have:

in column D, row 13: the number 12
in column D, row 14: the character E, and
in column E, row 12: the string Hello World.

In another cell, how can I combine the value from column D, row 13 (12) and column D, row 14 (E) such that I would get something like "=E12" which would be evaluated to Hello World.?

pnuts
  • 58,317
  • 11
  • 87
  • 139
TMOTTM
  • 3,286
  • 6
  • 32
  • 63

2 Answers2

1

Please try:

=INDIRECT(D14&D13)
pnuts
  • 58,317
  • 11
  • 87
  • 139
1

This should work.

=INDIRECT(CONCATENATE(D14,D13))
tospig
  • 7,762
  • 14
  • 40
  • 79