Table with Different Data Types

ADRIAN.CANTU

New Member
Joined
Aug 26, 2011
Messages
2
I have a table with account opening balances by year. So for account 100-cash i have a opening balance of $200 for 1999, for $500 in 2000 and so on. Additionally i have a table that has monthly transitional data. So for account 100-Cash i have $50 worth of transactions in Jan, $(20) in Feb and so on. My problem in i want to combine these tables into one. I would like to show like this: Account Opening Bal Jan Bal Feb Bal ......

any ideas?thanks.

ac
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Try this:

  • Write a query to sum the monthly transactions from the transactions table (unless it is already summed up by account/month).
  • Write a query to join monthly transaction summary by account to the opening balance by account
  • Crosstab the results.
You need to be sure you have a way to join the tables properly so that the opening balance is for the correct year - each query should have year and month or fiscal period identifiers, and should have only one record per fiscal period per account. All tables are generally joined on Year/Month/Account (unless the fiscal period is the month ending date, in which case its FiscalPeriod/Year).

It may be useful to create a form where you can enter a year parameter so that you can use the same query for any year that you'd like to see.
 
Upvote 0

Forum statistics

Threads
1,224,583
Messages
6,179,673
Members
452,937
Latest member
Bhg1984

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