Somebody pls help me!!

gresple

New Member
Joined
Apr 23, 2002
Messages
5
A B C
1 Full Planned 150
2 Full Actual 148
3 Part Planned 50
4 Part Actual 39
5 Full Planned 150
6 Full Actual 162

How can I have the sum of "Full" "Actual" that equals 310?
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Assuming that the numbers are in column A and "Full", etc...are in column B, enter the following formula in the formula bar and press ctrl-shift-enter (same time):

Code:
=SUM((B1:B6="Full")*(C1:C6="Actual")*D1:D6)

Hope this helps.
 
Upvote 0
Edited (information in 2 columns)

310 =SUMPRODUCT((A1:A6="Full")*(B1:B6="Actual")*(C1:C6))
310 =SUMPRODUCT((A1:A6=F1)*(B1:B6=G1)*(C1:C6))




look at Sumif in Help

310 =SUMIF(B1:B6,"Full Actual",C1:C6)

with criteria in E1
310 =SUMIF(B1:B6,E1,C1:C6)


Revise cell references as necessary
This message was edited by Dave Patton on 2002-05-01 09:31
 
Upvote 0
If 1 & Full are in the same cell use the following in the formula bar:

Code:
=SUM((MID(A1:A6,3,4)="Full")*(B1:B6="Actual")*C1:C6)

And press ctrl-shift-enter at the same time.

_________________
Cheers,<font size=+2><font color="red"> Nate<font color="blue">O</font></font></font>
This message was edited by NateO on 2002-05-01 09:44
 
Upvote 0

Forum statistics

Threads
1,213,487
Messages
6,113,943
Members
448,534
Latest member
benefuexx

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