Using IF OR Function across multiple sheets

Rachael

New Member
Joined
Aug 2, 2017
Messages
2
Hi
Can anyone help me work out the following?
I have 9 sheets in the same workbook with cells variously populated with 0 or 1. In a separate sheet I want to fill a cell with "1" if 1 occurs in the same cell in any of the 9 sheets, or "0" if it doesn't occur at all. I have tried using the following:

=IF(OR('Training NetworkB'!C5="1",KnowledgeSharingBtxt!C5="1",'Encouragement NetworkB'!C5="1",'Organisation NetworkB'!C5="1",'Monitoring NetworkB'!C5="1",'Networking NetB'!C5="1",'Labour sharing NetworkB'!C5="1",'Conflict NetworkB'!C5="1",'Phys_Finan Capital NetB'!C5="1"),"1","0")
It returns a 0 in all cells, even if a 1 occurs.
Many thanks in advance!
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
You need to remove the quotations marks from your checks as it's treating the 1 and 0's as text rather than numbers.

Training NetworkB'!C5="1" should be Training NetworkB'!C5=1 assuming you are checking only for numbers
 
Upvote 0

Excel 2010
ABC
23TRUE1
24TRUE1
1a
Cell Formulas
RangeFormula
A23=(SUM('1c:2aa'!C50)>0)
A24=(SUM(First:Last!C50)>0)
B23=(SUM('1c:2aa'!C50)>0)+0
B24=(SUM(First:Last!C50)>0)+0


You can sum across a range of sheets.
N.B. My examples do not include your sheet names or cell references.

One way is to insert blank sheets named First and Last before and after relevant sheets.

The same concept can work with existing names but First and Last is neater.

Sum > 0 yields True or False and adding 0 converts to 1 or 0
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,897
Messages
6,175,271
Members
452,628
Latest member
dd2

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