Add cells from different tabs which contain integers, ignoring text

Captain Hindsight

New Member
Joined
Oct 9, 2013
Messages
46
I have a workbook with several tabs. In the front sheet (sheet 1) I want to add up the total of cell A5 from every tab.

Every tab pulls data from the master sheet (Master sheet) using the below formula.

=IF(ISBLANK('Master sheet'!AA5),"",'Master sheet'!AA5)

This is causing the problem as some of the cells contain text.

How can I add without getting an error due to this text.

I don't want to remove the ISBLANK formula because then it shows a 0 every time which looks untidy.
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Hi

The function Sum() should ignore the text values.

Can you post the formula that you are using to sum?
 
Upvote 0
Hi

The syntax is:

=SUM('Tab3'!AA5,'Tab4'!AA5,'Tab5'!AA5)

or you can use a 3D formula

=SUM('Tab3:Tab5'!AA5)

if the worksheets are in sequence in the workbook.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,572
Messages
6,120,306
Members
448,955
Latest member
Dreamz high

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