I'm lost on how to go about taking the follow data from a excel spreadsheet and creating the listing on the bottom.
My data looks like this (sheet1)
Company Product#
A 10
A 11
A 12
A 13
B 15
B 16
B 17
C 11
C 12
The output would summarize sheet1 and present a new sheet like this
Company Total Products Notes
A 4 50% contained in this company is found in Company C
B 3
C 2 100% contained in this ocmpany is found in Company A
In summary, look at the input data sheet to determine if any one group product#s are found in other groups and if so, what is the percentage
I've investigated using a array, then a collection and finally a dictionary which only confused the issue.
I think i'm overthinking the solution.
Any help would be appreciated.
Thanks
My data looks like this (sheet1)
Company Product#
A 10
A 11
A 12
A 13
B 15
B 16
B 17
C 11
C 12
The output would summarize sheet1 and present a new sheet like this
Company Total Products Notes
A 4 50% contained in this company is found in Company C
B 3
C 2 100% contained in this ocmpany is found in Company A
In summary, look at the input data sheet to determine if any one group product#s are found in other groups and if so, what is the percentage
I've investigated using a array, then a collection and finally a dictionary which only confused the issue.
I think i'm overthinking the solution.
Any help would be appreciated.
Thanks