sumif to pull through from 2 sheets

zoepryce

New Member
Joined
Oct 30, 2023
Messages
10
Office Version
  1. 365
Platform
  1. Windows
Hi, I'm looking to pull data through to show if the answer is true to show was true but if false to then look at another sheet and then if true on there to return something else instead of true, let's say 'maybe' how do I do this. I've got the formula looking at the first sheet but can't get it look at the second sheet? thanks
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Please share your formulas? Maybe even some sample data and expected results? Please help the forum help you.
Mr. Excel has a tool called xl2bb add in (Link below) that allows you to share mini worksheets.
 
Upvote 0
Hi, this is the formula it's doing to return TRUE however I only wanted it to do this formula if cell U3 is showing FALSE =SUMIFS('Test'!D:D,'Test'!$B:$B,$B3)>0
Thank you
 
Upvote 0
Please post a sample of your worksheet using the xl2bb add in?
But, my guess is this
=IF(U3=FALSE,"Do what happens if U3 is FALSE", TRUE)

or maybe just:
if the formula in U3 is this:
SUMIFS('Test'!D:D,'Test'!$B:$B,$B3)>0

This formula may work:
=IF(SUMIFS('Test'!D:D,'Test'!$B:$B,$B3)>0,"Do what happens when this is true",TRUE)

or maybe that is what you want to do when U3 is false, then do this:

=IF(U3=FALSE,SUMIFS('Test'!D:D,'Test'!$B:$B,$B3)>0,TRUE)
 
Upvote 0

Forum statistics

Threads
1,215,561
Messages
6,125,538
Members
449,236
Latest member
Afua

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