Dec 18 2023 02:06 AM
I have the problem that I want to use the following formula in Table 2, Column B, where I calculate the difference between Table 2, Column A, and Table 1, Column A, using the column reference entered in Table 2, Column C. My approach, which I am using in the picture, is obviously not correct, which is why I need a different approach.
Dec 18 2023 02:34 AM
SolutionDec 18 2023 03:34 AM
@Batu12 Another option is the INDEX function, which I believe is the same in German:
=A3-INDEX(Tabelle1!A:A, C3)
Note: replace the comma with a semi-colon if necessary (depending on your system separator settings).
Dec 18 2023 04:08 AM
Dec 18 2023 02:34 AM
SolutionUse the INDIRECT function (INDIREKT in German):
=A3-INDIREKT("Tabelle1!A"&C3)