Hello, I have data in spread across multiple rows and columns. Column A is list of some email IDs and column B to Z are list of Interests (e.g. Games, Cooking, Philately, etc.) The input of interest is taken on a 10 point scale wherein no value represents that the email ID is not interested in that "Interest" and a number between 1 to 10 represents the interest level (with 10 being highest)
Sample Data
A1 - Email
A2 - xxx@xx.com
A3 - yyy@yy.com
and so on till A10
B1 - Hockey
B2 -
B3 - 2
and so on till B10
C1 - Tennis
C2 - 10
C3 - 2
and so on till C10
Requirement - I want to summarize by columns B to Z all the email IDs with their interest levels in a single cell separated by known identifiers (e.g. ":" and "|")
Output is required in row 11 as follows
B11 - yyy@yy.com:2
C11 - xxx@xx.com:10|yyy@yy.com:2
Hope my requirement is clear... Any help would be appreciated... Thanks!!!
Sample Data
A1 - Email
A2 - xxx@xx.com
A3 - yyy@yy.com
and so on till A10
B1 - Hockey
B2 -
B3 - 2
and so on till B10
C1 - Tennis
C2 - 10
C3 - 2
and so on till C10
Requirement - I want to summarize by columns B to Z all the email IDs with their interest levels in a single cell separated by known identifiers (e.g. ":" and "|")
Output is required in row 11 as follows
B11 - yyy@yy.com:2
C11 - xxx@xx.com:10|yyy@yy.com:2
Hope my requirement is clear... Any help would be appreciated... Thanks!!!