Formula for multiple conditions

Krayziekitten

New Member
Joined
Dec 9, 2014
Messages
14
Hello,

I need help with a formula please! :) I'm creating a summary page that shows amounts per month.
I am trying to create a formula that will go out to the correct tab, and return a net amount when two conditions are met.

Below is an example table. I want the formula to return the sum of the Credit less Debit based upon these two conditions:
Condition 1: Description = RDC
Condition 2: X shows an X

I've tried several different ways, however I cannot seem to get it to work right. And if possible, I don't want to add another column concatenating the Description with the X column to do a SUMIF.

So, when the formula is working correct I should receive a total of 100.00 for RDC totals.

Thanks in advance!!

DateDescriptionTransaction/Check#DebitCreditX
RDC100.00X
RDC250.00
Check300.00X

<tbody>
</tbody>
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Use SUMIFS instead, you can enter multiple criteria with it:
Code:
=SUMIFS(E:E, B:B, "RDC", F:F, "x")
And if you want to subtract Credit from Debit:
Code:
=SUMIFS(D:D, B:B, "RDC", F:F, "x")-SUMIFS(E:E, B:B, "RDC", F:F, "x")
In your example table, this would still give a result of 100.00...
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,990
Messages
6,122,625
Members
449,093
Latest member
catterz66

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