Financial Statements in Excel

primuspaul

Board Regular
Joined
Dec 23, 2015
Messages
75
Office Version
  1. 2021
  2. 2019
Platform
  1. Windows
I have data that comes in as individual accounts (could be 100-200 accounts) along with an amount next to it (two columns).

Account name......Amount
Account name......Amount
Account name......Amount
Account name......Amount

I need an automated way of generating financial statements using that data. They should look something like this:

https://www.aicpa.org/InterestAreas...forSMEs_SampleFinancialStatements_FSUsers.xls

Unfortunately, the statements aren't really "logical" as far as a computer is concerned. Each account on the account chart could belong to one type of statement and not to another, or perhaps to multiple statements. In each statement, the accounts would NOT appear using the account name found in the chart, but would be allocated to aggregate accounts. For example, TD Bank $10,000, Bank of America $11,000, and Petty Cash $1,000 on the account chart could appear on the balance sheet under the "ASSETS:" category as Current Assets $22,000.

I thought about using pivot tables and adding columns to the chart of accounts that had markers indicating the financial statement and aggregate category in said statement to which each account belongs, but it never comes out right. Many of the financial statements simply have illogical formats. I'm sure you can see that yourselves. Has anybody tackled this problem? Is there a working template available? What approach would I take to doing this the right way?
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Maybe something like this

Chart of accounts
[TABLE="class: grid, width: 172"]
<tbody>[TR]
[TD][/TD]
[TD]A
[/TD]
[TD]B
[/TD]
[/TR]
[TR]
[TD]1
[/TD]
[TD]account
[/TD]
[TD]category
[/TD]
[/TR]
[TR]
[TD]2
[/TD]
[TD]TD bank
[/TD]
[TD]cash
[/TD]
[/TR]
[TR]
[TD]3
[/TD]
[TD]Bank of America
[/TD]
[TD]cash
[/TD]
[/TR]
[TR]
[TD]4
[/TD]
[TD]Petty cash
[/TD]
[TD]cash
[/TD]
[/TR]
[TR]
[TD]5
[/TD]
[TD]Comp eq
[/TD]
[TD]PPE
[/TD]
[/TR]
</tbody>[/TABLE]

Data

[TABLE="class: grid, width: 234"]
<tbody>[TR]
[TD][/TD]
[TD]A
[/TD]
[TD="align: right"]B
[/TD]
[TD]C
[/TD]
[/TR]
[TR]
[TD]1
[/TD]
[TD]TD bank
[/TD]
[TD="align: right"]10,000
[/TD]
[TD]cash
[/TD]
[/TR]
[TR]
[TD]2
[/TD]
[TD]Bank of America
[/TD]
[TD="align: right"]11,000
[/TD]
[TD]cash
[/TD]
[/TR]
[TR]
[TD]3
[/TD]
[TD]Petty cash
[/TD]
[TD="align: right"]1,000
[/TD]
[TD]cash
[/TD]
[/TR]
[TR]
[TD]4
[/TD]
[TD]Comp eq
[/TD]
[TD="align: right"]3,000
[/TD]
[TD]PPE
[/TD]
[/TR]
[TR]
[TD]5
[/TD]
[TD]Etc.
[/TD]
[TD="align: right"][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]

in C1 a vlookup to get the category
Code:
=VLOOKUP(A1,coa!A2:B5,2,0)

Then on your FS use a sumifs

[TABLE="class: grid, width: 362"]
<tbody>[TR]
[TD][/TD]
[TD]A
[/TD]
[TD]B
[/TD]
[TD]C
[/TD]
[TD]D
[/TD]
[/TR]
[TR]
[TD]1
[/TD]
[TD="colspan: 3"]CURRENT ASSETS:
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]2
[/TD]
[TD]Cash
[/TD]
[TD="align: right"][/TD]
[TD]22,000
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]3
[/TD]
[TD="colspan: 3"]Trade Accounts Receivable
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]4
[/TD]
[TD="colspan: 2"]Inventory
[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]5
[/TD]
[TD="colspan: 3"]Prepaid Income Taxes
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]6
[/TD]
[TD] Total Current Assets
[/TD]
[TD="colspan: 3"]XXXX
[/TD]
[/TR]
</tbody>[/TABLE]

In C2 and copy down
Code:
=SUMIFS(data!$B$1:$B$4,data!$C$1:$C$4,A2)
 
Upvote 0
I use something like this now. The problem I have is that I need to add accounts to the financial statement manually instead of having them generated automatically based on additions to the chart of accounts. Formatting is very important for financial statements and it turns into hell when I have to add a category and then reformat everything. Then there is the issue with changes to category names on the financial statement, which would also need to be updated manually in the chart of accounts. The closest thing I've seen that does this automatically is QuickBooks statement writer, but I need to do this in excel, or at the very least have a quick and easy way of importing it into QuickBooks, which does not appear to be possible.
 
Upvote 0

Forum statistics

Threads
1,223,881
Messages
6,175,159
Members
452,615
Latest member
bogeys2birdies

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