Populating cells from data that doesn't exist yet

Sean C

New Member
Joined
Oct 27, 2022
Messages
4
Office Version
  1. 365
Platform
  1. Windows
Hi Guys,

Bit of a novice here, so apologies in advance if this isn't worded overly well.

I have a master budget document that I have to enter variations too. I am bringing in the tabs for the variation into the master budget sheet . i have created a simple SUMIF function to draw the info from the new tab into the master budget. I want to be able to set this up in such a way that i create all the formulas but they dont activate until the tab is drawn in. at the moment i am having to drag across and manually change the Tab reference name. As you can see below I get a #value error if the tabs sheet isn't added, I have also tried to replace ( for example V4 with a new V4 tab) with no joy. I'm finding I have to manually change verything all the time, very time cosuming.

Thanks in advance for any help on this.
1666853042300.png
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Hi,
You want to get rid of the #VALUE error and leave it empty? and when the V4 sheet is added you then want it to show the value?
 
Upvote 0
please paste me your formula here so i dont make a mistake re-typing it
 
Upvote 0
Thanks

=SUMIF('V2'!$B$5:$B$5110,$C22,'V2'!$T$5:$T$5110)
 
Upvote 0
try this:
=IFERROR(SUMIF('V2'!$B$5:$B$5110;$C22;'V2'!$T$5:$T$5110);"")
or this:
=IFERROR(=SUMIF('V2'!$B$5:$B$5110,$C22,'V2'!$T$5:$T$5110)),"")
 
Last edited:
Upvote 0
Thanks , have just stepped away from computer today, will check in the morning and get back to you.
 
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

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