Help using an IF function across multiple tabs.

braderz

New Member
Joined
Sep 26, 2013
Messages
16
Hi everyone,

First time poster to the forum.
What I'm looking to do is to use an IF function on a master sheet which takes data from multiple tabs. What I have attempted is the following and works for one tab:

=IF('J BLOGGS'!B11="COMPLETED", 'J BLOGGS'!B1, "")

Then if I extend it to multiple tabs this doesn't work:

=IF('J BLOGGS'!B11="COMPLETED", 'J BLOGGS'!B1, "")+IF('M BEAN'!B11="COMPLETED",'M BEAN'!, B1, "")

I plan to extend this further to more tabs so that if this holds there email addresses will appear on the master sheet. Configuring these is another problem in its self as there may be quite a few but I will cross that bridge when it comes to it!

Many thanks in advance any help is much appreciated :cool:
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Hi everyone,

First time poster to the forum.
What I'm looking to do is to use an IF function on a master sheet which takes data from multiple tabs. What I have attempted is the following and works for one tab:

=IF('J BLOGGS'!B11="COMPLETED", 'J BLOGGS'!B1, "")

Then if I extend it to multiple tabs this doesn't work:

=IF('J BLOGGS'!B11="COMPLETED", 'J BLOGGS'!B1, "")+IF('M BEAN'!B11="COMPLETED",'M BEAN'!, B1, "")

I plan to extend this further to more tabs so that if this holds there email addresses will appear on the master sheet. Configuring these is another problem in its self as there may be quite a few but I will cross that bridge when it comes to it!

Many thanks in advance any help is much appreciated :cool:

Try this

=concatenate(if('J BLOGGS'!B11="COMPLETED",'J BLOGGS'!B1,"")," ",IF('M BEAN'!B11="COMPLETED",'M BEAN'!B1,""))

You had committed a syntax error also - 'M BEAN'!,B1 should be 'M BEAN'!B1 (no comma between 'M BEAN'! and B1)
 
Upvote 0
Try this

=concatenate(if('J BLOGGS'!B11="COMPLETED",'J BLOGGS'!B1,"")," ",IF('M BEAN'!B11="COMPLETED",'M BEAN'!B1,""))

You had committed a syntax error also - 'M BEAN'!,B1 should be 'M BEAN'!B1 (no comma between 'M BEAN'! and B1)

Fantastic Just what I wanted really appreciate that!
 
Upvote 0

Forum statistics

Threads
1,216,116
Messages
6,128,929
Members
449,479
Latest member
nana abanyin

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