Understanding what is happening in a formula

RodneyC

Active Member
Joined
Nov 4, 2021
Messages
278
Office Version
  1. 2016
Platform
  1. Windows
Rather than keep asking the same type question over and over, I’d like to ask questions about a formula, understand what is happening with it, why it’s not working and apply what I learn to future efforts. Please correct me where I'm wrong on my bullet points below:

I have this formula in cell B2 on a tab named Sheet 1:

=SUMIFS(INDEX(By Podcast!$A$2:$N$490,,2), By Podcast!$A$2:$A$490, $A2)
  • It is looking at a tab named “By Podcast” in the range $A$2:$N$490 for the value in column 2 (which is B) A2-N490 is where all my data is
  • It is also looking at tab By Podcast in the range $A$2:$A$490 to see if it has the value in $A2 from Sheet 1.
  • This formula should sum all of the values in By Podcast column B where the value in By Podcast $A$2:$A$490 equal the value in Sheet 1 $A2
Is this correct? It’s producing a #NAME? result. When I place the formula and hit enter, a dialogue box opens as if it’s trying to find the document I’m trying to pull data from yet all the data is in the same doc as the cell with the formula.

Thanks for your patience and efforts to teach me.
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
When sheets have spaces in their name you need to wrap the in single quotes like
Excel Formula:
=SUMIFS(INDEX('By Podcast'!$A$2:$N$490,,2), 'By Podcast'!$A$2:$A$490, $A2)
That said I see no reason for the index, you can simply use
Excel Formula:
=SUMIFS('By Podcast'!$B$2:$B$490, 'By Podcast'!$A$2:$A$490, $A2)
 
Upvote 0
When sheets have spaces in their name you need to wrap the in single quotes like
Excel Formula:
=SUMIFS(INDEX('By Podcast'!$A$2:$N$490,,2), 'By Podcast'!$A$2:$A$490, $A2)
That said I see no reason for the index, you can simply use
Excel Formula:
=SUMIFS('By Podcast'!$B$2:$B$490, 'By Podcast'!$A$2:$A$490, $A2)
AWESOME! I did not know the single quote was needed when a tab name had spaces. Thank you
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,897
Messages
6,122,148
Members
449,066
Latest member
Andyg666

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