I have a formula with the following syntax:
=SheetName!E10
and you need to somehow drag the formula and change only the sheet name when it moves to the right. Thus, part of E10 should remain unchanged as the number of sheets increases as you drag the formula. We have many rows and columns, and this will certainly speed us up.
Is it possible?
Thus, the result will look like this:
=Sheet1!E10 =Sheet2!E10 =Sheet3!E10
This is the result:

from applying this formula:
=INDIRECT("mo"&COLUMN()+0&"!B4")
source share