Multiple COUNTIFs and then Multiply by (Formula)

Morey

New Member
Joined
Sep 24, 2018
Messages
37
Following Formula works by returning a value total of 2. How do I add in multiply final count by $1445?

VBA Code:
=COUNTIF('OCT 19'!I:I,"E")+COUNTIF('NOV 19'!I:I,"E")

I've tried this with no luck.
Code:
=COUNTIF('OCT 19'!I:I,"E")+COUNTIF('NOV 19'!I:I,"E")*1445


Regards,

Morey
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
You need to put the sum portion in brackets like
=(COUNTIF('OCT 19'!I:I,"E")+COUNTIF('NOV 19'!I:I,"E"))*1445

otherwise it will multiply the 2nd countif by 1445 & then add the 1st countif
 
Upvote 0
You need to put the sum portion in brackets like
=(COUNTIF('OCT 19'!I:I,"E")+COUNTIF('NOV 19'!I:I,"E"))*1445

otherwise it will multiply the 2nd countif by 1445 & then add the 1st countif

Fluff,

That did it. Thanks for the tips.

Morey
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,971
Messages
6,122,517
Members
449,088
Latest member
RandomExceller01

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