Here is a problem we face very frequently. You have a list of values by months. And you want to find out the totals by Quarter. How do you go about it?

There are 2 options:
- You can make a pivot report from the data and then group dates in that to find totals by quarter
- You can write formulas to find the totals by quarter
While option 1 is good for knowing the values, we need option 2 if you want the values to be fed to another report, chart or dashboard.
Writing Formulas to Get Quarterly Totals from Monthly Data:
First, understand a little math formula called ROUNDUP():
ROUNDUP formula takes a number and rounds it up to the nearest fraction as specified by you. So for eg.,
ROUNDUP(1.234,1) = 1.3ROUNDUP(1.234,2) = 1.24ROUNDUP(1.234,0) = 2ROUNDUP(1.0,0) = 1
Now, assuming your monthly data is in cells B4:C15,
Our objective is to find Quarters from dates and then add up all items in Q1 against Quarter 1.

We can get the month from a date using MONTH() formula. If we divide the month by 3 and then round the value up to nearest integer we will get the Quarter.
So, A formula like =ROUNDUP(MONTH(B4)/3,0) should tell us the quarter for the month in the cell B4.
So the final formula for calculating sum of all the sales in Q1 is =SUMPRODUCT((ROUNDUP(MONTH(B4:B15)/3,0)=1)*(C4:C15)).
How this formula works?

Well, the portion ROUNDUP(MONTH(B4:B15)/3,0)=1 gives a bunch of 1 and 0s, one where the month belongs to Q1 and zero where it is not. When you multiply these ones and zeros with actual sales values in C4:C15, you get the total sales in Q1.
Since SUMPRODUCT has magical powers, it just processes all these ranges of data without batting an eyelid.
Download the example worksheet and play with this formula
Go ahead and download the example workbook and play with SUMPRODUCT formula to understand this better.
How do you calculate Quarterly Totals from Monthly Data?
Do you know a better way to do such calculation? How do you usually do it? Please share your tricks and ideas using comments.

















6 Responses to “Make VBA String Comparisons Case In-sensitive [Quick Tip]”
Another way to test if Target.Value equal a string constant without regard to letter casing is to use the StrCmp function...
If StrComp("yes", Target.Value, vbTextCompare) = 0 Then
' Do something
End If
That's a cool way to compare. i just converted my values to strings and used the above code to compare. worked nicely
Thanks!
In case that option just needs to be used for a single comparison, you could use
If InStr(1, "yes", Target.Value, vbTextCompare) Then
'do something
End If
as well.
Nice tip, thanks! I never even thought to think there might be an easier way.
Regarding Chronology of VB in general, the Option Compare pragma appears at the very beginning of VB, way before classes and objects arrive (with VB6 - around 2000).
Today StrComp() and InStr() function offers a more local way to compare, fully object, thus more consistent with object programming (even if VB is still interpreted).
My only question here is : "what if you want to binary compare locally with re-entering functions or concurrency (with events) ?". This will lead to a real nightmare and probably a big nasty mess to debug.
By the way, congrats for you Millions/month visits 🙂
This is nice article.
I used these examples to help my understanding. Even Instr is similar to Find but it can be case sensitive and also case insensitive.
Hope the examples below help.
Public Sub CaseSensitive2()
If InStr(1, "Look in this string", "look", vbBinaryCompare) = 0 Then
MsgBox "woops, no match"
Else
MsgBox "at least one match"
End If
End Sub
Public Sub CaseSensitive()
If InStr("Look in this string", "look") = 0 Then
MsgBox "woops, no match"
Else
MsgBox "at least one match"
End If
End Sub
Public Sub NotCaseSensitive()
'doing alot of case insensitive searching and whatnot, you can put Option Compare Text
If InStr(1, "Look in this string", "look", vbTextCompare) = 0 Then
MsgBox "woops, no match"
Else
MsgBox "at least one match"
End If
End Sub