Newbie questions regarding dates, thanks in advance for your assistance!

kevin223

New Member
Joined
Oct 7, 2009
Messages
2
My office manager provides me an excel report (sample below) where we keep a running total of all business that a particular Agent writes, divided into three categories, Life, LTC, and Annuities. There are different subtypes of policies shown in the policy code column, the amount of premium the customer is paying, the amount of face amount of the policy, the amount of commission (equalizer) and other information.

What I need is a report to show information for the business written during the current month vs. the prior month, also 1st quarter vs. 2nd, 3rd, and 4th Quarters, and 2009 vs 08, 07, 06, and 05. These should all obviously need to reference the date column, but I do not know how to do this, sigh.

Any help would be greatly appreciated. If you know of a thread that directly refers to this or other internet resource (youtube, training, etc.) just point me there. I have already searched to no avail. Thanks again!

Sample
Agent Name Policy Type Date Written Client Name Council Policy Code Premium Face Amount Equalizer Amount A-I Status
Byron Agent Life 1/8/2009 Last Name, First Name 10766 811 $2,771.80 $10,000 $74.84 Not Taken
Byron Agent Life 1/8/2009 Last Name, First Name 10766 801 $1,524.00 $100,000 $868.68 Released
Byron Agent Life 1/8/2009 Last Name, First Name 10766 811 $6,406.00 $22,357 $172.96 Released
Byron Agent Life 1/8/2009 Last Name, First Name 10766 801 $798.00 $50,000 $454.86 Released
Byron Agent LTC 1/13/2009 Last Name, First Name 418 NHC01 $1,097.88 $0 $461.11 Postponed
Byron Agent LTC 1/13/2009 Last Name, First Name 418 NHC01 $1,157.64 $0 $486.21 Released
Byron Agent Life 1/15/2009 Last Name, First Name 8240 852 $1,467.48 $199,650 $440.24 1 Declined
Byron Agent Life 1/15/2009 Last Name, First Name 8240 801 $178.20 $15,000 $101.57 Released
Byron Agent Life 1/15/2009 Last Name, First Name 8240 852 $1,132.08 $199,650 $305.66 Unfulfilled
Byron Agent Annuity 1/20/2009 Last Name, First Name 418 960 $0.00 $45,337 $965.39 Pending
Byron Agent Annuity 1/22/2009 Last Name, First Name 367 960 $0.00 $10,000 $400.00 Released
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
One set of formulas you can start with:

Excel Workbook
ABCDEFGHIJK
1Agent NamePolicy TypeDate WrittenClient NameCouncilPolicy CodePremiumFace AmountEqualizer AmountA-IStatus
2Byron AgentLife1/8/2009Last Name, First Name10766811$2,771.80$10,000$74.84Not Taken
3Byron AgentLife1/8/2009Last Name, First Name10766801$1,524.00$100,000$868.68Released
4Byron AgentLife1/8/2009Last Name, First Name10766811$6,406.00$22,357$172.96Released
5Byron AgentLife1/8/2009Last Name, First Name10766801$798.00$50,000$454.86Released
6Byron AgentLTC1/13/2009Last Name, First Name418NHC01$1,097.88$0$461.11Postponed
7Byron AgentLTC1/13/2009Last Name, First Name418NHC01$1,157.64$0$486.21Released
8Byron AgentLife1/15/2009Last Name, First Name8240852$1,467.48$199,650$440.241Declined
9Byron AgentLife1/15/2009Last Name, First Name8240801$178.20$15,000$101.57Released
10Byron AgentLife1/15/2009Last Name, First Name8240852$1,132.08$199,650$305.66Unfulfilled
11Byron AgentAnnuity1/20/2009Last Name, First Name418960$0.00$45,337$965.39Pending
12Byron AgentAnnuity1/22/2009Last Name, First Name367960$0.00$10,000$400.00Released
Sheet2
Excel Workbook
MNOPQRSTUVW
1AgentCurrent MonthPrior MonthQ1Q2Q3Q42009200820072006
2Byron Agent00$651,994.00$ -$ -$ -$651,994.00$ -$ -$ -
Sheet2
 
Upvote 0
Thank you for the reply, this will be very helpful. I will play with it and see what I get. From the looks of the formulas below, they are all referencing the "Face Amount" Column. If I wanted numbers for premium and Equalizer amounts, I would just need to change the Column H references to G and I respectfully, correct?

Not to be greedy, but is there a way to only have the values appear if they are Life (Column B)? I guess that would be an IF statement? I dunno. If I could know that, then I could repeat it for "Annuity" and "LTC" in separate areas of the same report.

I tried to do this with pivot tables but couldn't figure out how to filter by a date range that didn't include ALOT of clicking.

Thanks again for reading and helping!
 
Upvote 0
The cool thing about SUMPRODUCT() is that if you need to add more restrictions, you just add another section WITHIN the formula itself adding the new column and new criteria. Take that N2 formula for instance. It currently only has filters in it for the date and the name. But you can add the Type filter right in there:

=SUMPRODUCT(--($A$2:$A$100=$M2), --($B$2:$B$100=
Life")
, --($C$2:$C$100>=DATE(YEAR(TODAY()), MONTH(TODAY()), 1)), $H$2:$H$100)
 
Upvote 0

Forum statistics

Threads
1,214,821
Messages
6,121,759
Members
449,048
Latest member
excelknuckles

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