eotterholt
New Member
- Joined
- Dec 30, 2015
- Messages
- 3
I am working on creating a compliance check based on two cell values.
I have a "data dump" worksheet where I dump the data from my source. I comes out like below.
(it's not code, I just used it to highlight it)
I have multiple security types, I need to search and return and create a total for all security types where the Security Names match so I would have a total for all MMUS for BofA of 2750
So it would return on another worksheet "Issuer Compliance" the following:
I'd prefer to use VBA to do the heavy lifting as the worksheets can contain a lot of data, however, if there is a formula solution, I'd look at that too. I just can't wrap my mind around it and am stuck.
Thanks for the help
I have a "data dump" worksheet where I dump the data from my source. I comes out like below.
(it's not code, I just used it to highlight it)
Code:
Column
A B C D E
1 security Type qty Security Name Date Market Value
2 mmus 100 BofA 12/15/15 1000.00
3 mmus 50 BofA 3/14/15 750.00
4 mmus 100 Key Bank 12/15/15 1000.00
5 mmus 75 BofA 12/15/15 1000.00
6 oius 100 Wells Fargo 12/15/15 1000.00
7 mmus 100 Wells Fargo 12/15/15 1000.00
I have multiple security types, I need to search and return and create a total for all security types where the Security Names match so I would have a total for all MMUS for BofA of 2750
So it would return on another worksheet "Issuer Compliance" the following:
Code:
A B C D E
1 security Type qty Security Name Date Market Value
2 mmus 100 BofA 12/15/15 1000.00
3 mmus 50 BofA 3/14/15 750.00
4 mmus 75 BofA 12/15/15 1000.00
-------------------------------------------------------------------------------------------
5 225 BofA 2750
6 oius 100 Wells Fargo 12/15/15 1000.00
7 mmus 100 Wells Fargo 12/15/15 1000.00
4 mmus 100 Key Bank 12/15/15 1000.00
I'd prefer to use VBA to do the heavy lifting as the worksheets can contain a lot of data, however, if there is a formula solution, I'd look at that too. I just can't wrap my mind around it and am stuck.
Thanks for the help
Last edited: