Add sheet reference in CELL() content

sassaboss

New Member
Joined
Oct 8, 2020
Messages
9
Office Version
  1. 2016
Platform
  1. Windows
Hello, I've been trying to insert a Sheet reference inside CELL() formula because I want to reffer to another Sheet, not in current Sheet, where I write given formula.
Cell reference that is bold AH$1 and AH$19000 should refer to Sheet named "AAA". Right now I am getting #REF in every case I've tried.
I tried to use INDIRECT but didn't have much luck.


Any help is more than welcome :)

=SUMIFS(
INDIRECT("FAKT_"&D$1&"!"&CELL("address";AH$1)&":"&CELL("address";AH$19000));
INDIRECT("FAKT_"&D$1&"!$S1:$S19000");$B12;
INDIRECT("FAKT_"&D$1&"!$C1:$C19000");$A$7
)
 
Best guess, it looks like this is what you need. The CELL function appears to be irrelevant.

=SUMIFS(
INDIRECT("FAKT_"&D$1&"AH$1:AH$19000);
INDIRECT("FAKT_"&D$1&"!$S1:$S19000");$B12&"*";
INDIRECT("FAKT_"&D$1&"!$C1:$C19000");$A$6
)
It works !!!
Thanks very much !
(y)(y)(y)(y)(y)(y)(y)
 
Upvote 0

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).

Forum statistics

Threads
1,216,025
Messages
6,128,339
Members
449,443
Latest member
Chrissy_M

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top