brandonrlz
New Member
- Joined
- Jul 29, 2011
- Messages
- 30
First...best find!! The site and video's are pure awesome and help provide me with a lot of refresher courses as well as new tactics so thanks to everyone!!
Here's my dilemma...I did some searching but couldn't really find anything that really targets what I'm trying to do, so any direction on how to approach this would be fantastic!!
I've got three columns in a spreadsheet that I want to slim down to one level and use some conditional formatting to build a dashboard out of it. That part won't be to difficult to do; however, I'm having a little bit of a brain fart in how to accomplish this.
Column 1 - Column 2 - Column 3
Bob - 1 - 1
Bob - 2 - 2
Bob - 3 - 3
Bill - 4 - 4
Bill - 5 - 5
Bill - 6 - 6
Steve - 7 - 7
Steve - 8 - 8
Steve - 9 - 9
What I want to do is take each line item and combine/calculate it into one line item.
Bob - 12
Bill - 30
Steve - 48
I've tried using "sumif" to do this; however, it's only capturing the first column of data.
I'm wondering if doing an array would work better in this situation, or if I should be taking a different approach entirely.
Thanks for the help and insight on this.
Here's my dilemma...I did some searching but couldn't really find anything that really targets what I'm trying to do, so any direction on how to approach this would be fantastic!!
I've got three columns in a spreadsheet that I want to slim down to one level and use some conditional formatting to build a dashboard out of it. That part won't be to difficult to do; however, I'm having a little bit of a brain fart in how to accomplish this.
Column 1 - Column 2 - Column 3
Bob - 1 - 1
Bob - 2 - 2
Bob - 3 - 3
Bill - 4 - 4
Bill - 5 - 5
Bill - 6 - 6
Steve - 7 - 7
Steve - 8 - 8
Steve - 9 - 9
What I want to do is take each line item and combine/calculate it into one line item.
Bob - 12
Bill - 30
Steve - 48
I've tried using "sumif" to do this; however, it's only capturing the first column of data.
Code:
=SUMIF(A1:A9,"Bob",B1:C9)
I'm wondering if doing an array would work better in this situation, or if I should be taking a different approach entirely.
Thanks for the help and insight on this.