Adding 3 different columns based on criteria

sparkyhp

Board Regular
Joined
Mar 6, 2009
Messages
66
Hi I really hope someone can help because I'm not sure what to do for the best.

I have a master document with a summary tab and 10 or so different tabs based on our different regions.

In each of our region tabs it is filtered by "Likely" & "Very Likely" and then there are values in Columns L and Q which I need to add up, the total of these columns sit in the summary sheet for that region so it's easy for someone to go in and look at the total.

The region tabs are copied over every month with the updated changes the totals will always remain in columns L and Q is there a formula that I can put into the summary tab so that it updates every time the tabs are copied over?

Thanks (Hope some of that makes sense??)
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Are you saying that you need the total of Col"L" if in the same row you have "Likely"?

And then Col"Q" if same Row has "Very Likely"?

If so what are the Col's with "Likely" & "Very Likely"?

Also what method is used to "copy over" the regional tabs ?
 
Upvote 0
Hi Thanks for your reply,

Likely and Very likely are both in column J then the values I would like to add could either be in L or Q.
 
Upvote 0
Didn't notice the last question.

I've done a VBA script which goes into the main folder filters the data by likely and very likely and then copy visible cells and then pastes it into the relevant tab on the master document.

Thanks
 
Upvote 0
Not sure if I understand yet...
Is this what you need?
Excel Workbook
JKLQ
1CheckVal "L"Val "Q"
2Likely12
3Very Likely34
4Very Likely56
5Likely78
6Likely910
7Very Likely1112
Region
Excel 2007
Excel Workbook
STUV
1Likely "L" totalLikely "Q" totalVeryLikely "L" totalVeryLikely "Q" total
217201922
Region
Excel 2007
Cell Formulas
RangeFormula
S2=SUMIF(J2:J7,"Likely",L2:L7)
T2=SUMIF(J2:J7,"Likely",Q2:Q7)
U2=SUMIF(J2:J7,"Very Likely",L2:L7)
V2=SUMIF(J2:J7,"Very Likely",Q2:Q7)
 
Upvote 0

Forum statistics

Threads
1,224,518
Messages
6,179,256
Members
452,901
Latest member
LisaGo

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