Recategorising Data Dynamically

bcrosby

New Member
Joined
Oct 22, 2018
Messages
1
Hi,
I have a budget worksheet with multiple worksheets and multiple categories on each worksheet. I have arranged these categories in what I think is a logical manner however, I am a mortgage broker and need to submit these budget spreadsheets to different lenders.
The issue is that each lender categorises the data in a different way.
For example, lender X considers Home Internet to be a household expense whereas Lender Y considers it under Entertainment. For a few categories and a few lenders this could be manageable to simply re-calculate the categories but, I have Excel so why should I be manually recalculating anything. ;). The other issue is that they use different names for the same thing.
I want some guidance as to the best way to tackle the issue. Should I:
  • Use VBA to create an array per lender and have each array contain a list of the lender categories and a list of cells related to that category which are then summed and output? Something like the following pseudo-code:
    • LenderX-Array
      • HouseholdExpenses = sum(F12, F23, F96, F123)
      • ChildhoodExpenses = sum(F9, F50)
      • ...
      • Print (HouseholdExpenses, ChildhoodExpenses, ....)
    • LenderY-Array
      • HomeCosts = sum(F3, F8, F38)
      • ...
      • Print (HomeCosts, ...)
  • Create a macro that manipulates the data somehow (I can't picture how at the moment)?

I've thought about putting the lender names/codes against each line item but there are over 30. I don't think adding 30+ columns to contain each lenders' details is going to scale well and it makes the spreadsheet very messy to hand out to clients. I'd rather hide that detail.
I've researched online but everything that I've read so far is based on pivot tables or slices and, without having some categorisation of each cell per lender, as per the previous point, I can't see how they will work.
I'm happy to put in a lot more work before asking more questions but want some guidance as to the best approach to take.
I thank you in advance.
 

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.

Forum statistics

Threads
1,214,596
Messages
6,120,438
Members
448,966
Latest member
DannyC96

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