Setting up and comapring point in time data

ejgallagher

Board Regular
Joined
Aug 3, 2002
Messages
123
Hi all,

Here is my situation. I have claim runs that I am loading into my access database. I want to be able to compare monthly loads by the claim number and see how claims grow in a month by month basis.

I have a table with all of the claims information - how is it possible compare data over time?

Thanks,

Ed
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Hi, this can be done but it depends on the data in your claims table. Does your table of claims include a date field, such as the date the item was loaded? Or does your table have a field such as the claim run number? Or is there another sort of date such as the date the claim was opened? If none of the above, I recommend you advise the structure of the main table with all of the variable names so that someone here may help.
Andrew.
 
Upvote 0
I have the following as part of my data:

Claim Number - Unique Identifier
Claim Occurrence Date
Claim Closed date - if applicable
Claim Valuation date - when I pulled the data


The only item that will change in this set would be the valuation date. What I would want to be able to do is compare values of paid amounts between valuation dates - showing growth spikes and averages.


Thanks,

Ed
 
Upvote 0
Well you can extract the month from a date field like this:

Month:Month([DateField])

and the year similarly

Year:Year([DateField])

You could use these expressions in a query to group by month/year and count/sum claims.
 
Upvote 0

Forum statistics

Threads
1,221,816
Messages
6,162,149
Members
451,746
Latest member
samwalrus

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