inactiveUser462638
New Member
- Joined
- Jun 13, 2020
- Messages
- 13
- Office Version
- 2016
- Platform
- Windows
Hi Excel Champs,
Please help me getting this calculated. I'm using SUMIFS formulas now but it's going very slow.
I have data like this:
I need to make a CashFlow report out of above data like this:
Can you please help me with a VBA code that calculates this using the Dictionary?
Thank you very much!
Please help me getting this calculated. I'm using SUMIFS formulas now but it's going very slow.
I have data like this:
Element Type | Inflow/Outflow | Forecast ID | Element Description | Date | Recording Person | Vendor / Customer | Gross Amount |
HR Costs | Outflow | Refund Andre | 01.01.2020 | Phil | Customer1 | 18.00 | |
Technology Services | Outflow | Subscription | 01.01.2020 | Phil | Customer2 | 45.00 | |
Loans and Taxes | Inflow | Subscription | 01.02.2020 | Phil | Customer2 | 45.00 | |
Office Costs | Outflow | Subscription | 01.03.2020 | Phil | Customer2 | 36.00 | |
Travel, Accommodation, Expenses | Outflow | Income Tax | 01.04.2020 | Phil | Customer3 | 1337.79 | |
Technology Services | Inflow | Subscription | 01.04.2020 | Phil | Customer2 | 36.00 | |
Loans and Taxes | Outflow | To Customer4 | 01.05.2020 | Phil | Customer4 | 0.00 | |
Loans and Taxes | Inflow | Subscription | 01.05.2020 | Phil | Customer2 | 36.00 |
I need to make a CashFlow report out of above data like this:
Date | Beginning Balance | Cash Inflows | Cash Outflows | Net Cash Flows | Ending Cash Balance |
01.01.2020 | 100000 | =SUMIF() | =SUMIF() | =C2-D2 | =B2+E2 |
02.01.2020 | =F2 | =SUMIF() | =SUMIF() | =C3-D3 | =B3+E3 |
03.01.2020 | =F3 | =SUMIF() | =SUMIF() | =C4-D4 | =B4+E4 |
Can you please help me with a VBA code that calculates this using the Dictionary?
Thank you very much!
Last edited by a moderator: