How to add an OR to this SUMIFS

slam

Well-known Member
Joined
Sep 16, 2002
Messages
921
Office Version
  1. 365
  2. 2019
I have this formula working currently:

Excel Formula:
=SUMIFS('Portfolio 2025'!V:V,'Portfolio 2025'!P:P,"Planned",'Portfolio 2025'!S:S,"Prioritized")

I need to add an OR to it for two other columns

Excel Formula:
OR('Portfolio 2025'!Q:Q,"Recommended",'Portfolio 2025'!R:R,"Recommended")

Not sure how to fit these together, or whether I need a different function?
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Maybe this?
Excel Formula:
=SUMIFS('Portfolio 2025'!V:V,'Portfolio 2025'!P:P,"Planned",'Portfolio 2025'!S:S,"Prioritized") + SUMIFS('Portfolio 2025'!V:V,'Portfolio 2025'!Q:Q,"Recommended",'Portfolio 2025'!R:R,"Recommended")
 
Upvote 0
Or maybe this?:

Excel Formula:
=SUM('Portfolio 2025'!V:V*('Portfolio 2025'!P:P="Planned")*('Portfolio 2025'!S:S="Prioritized")*(('Portfolio 2025'!Q:Q="Recommended")+('Portfolio 2025'!R:R="Recommended")>0))

Or this:

Excel Formula:
=SUM(FILTER(V:V, ('Portfolio 2025'!P:P="Planned")*('Portfolio 2025'!S:S="Prioritized")*(('Portfolio 2025'!Q:Q="Recommended")+('Portfolio 2025'!R:R="Recommended")),0))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,176
Members
453,021
Latest member
Justyna P

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