Hi,
I recently started using the software and was hoping someone might have some advice for a problem I'm running into when I try to group concatenated strings using the summarize tool. Basically, I started out with data that consisted of a row for every customer entry--with multiple entries for each customer, grouped by transaction ID, like so:
Cust A apples Jan
Cust A oranges Jan
Cust B peaches Jan
Cust C apples Feb
Cust C oranges Feb
I am interested in analyzing all the different combinations of purchases by month, on an aggregate level.
I seperated out the fields I was interested in, grouped my entries by unique customer identifier and then concatenated the purchase strings to get one row per customer summarizing their purchase per transaction. From there, when I tried to group and count based on the concatenation, I got duplicate entries because of subtle nuances in how the purchases were concatenated. Ex: differences in space, the ordering of purchases, etc...
Ultimately, I just want a simple tabulation by group combinations, by month. Any advice on this would be appreciated.