Good morning from Charlotte, NC!
I feel like there will be a relatively simple solution here; however, I spent the better part of the morning yesterday trying to construct the appropriate formula to extract data from a cell and could not successfully accomplish the task. Basically, I have survey responses from a Likert scale matrix that have been aggregated into one cell. I need to have that data separated and included in individual columns representing the response of each respondent for each survey item. Here is what I have:
I think I figured out a formula for column S1 [=MID(H2,SEARCH("S1:",H2)+4,SEARCH(",",H2)-SEARCH("S1:",H2)-4)], but a having a hard time figuring out the LEN or MID and RIGHT functions. Thanks, in advance, for any thoughts or solutions!
I feel like there will be a relatively simple solution here; however, I spent the better part of the morning yesterday trying to construct the appropriate formula to extract data from a cell and could not successfully accomplish the task. Basically, I have survey responses from a Likert scale matrix that have been aggregated into one cell. I need to have that data separated and included in individual columns representing the response of each respondent for each survey item. Here is what I have:
RESPONSES | S1 | S2 | S3 | S4 | |
| |||||
| |||||
| |||||
| |||||
| |||||
| |||||
| |||||
| |||||
|
Here is what I want to achieve:RESPONSES | S1 | S2 | S3 | S4 | |
| Strongly Agree | Agree | Agree | Strongly Agree | |
| Strongly Agree | Strongly Agree | Strongly Agree | Agree | |
| Agree | Disagree | Agree | Agree | |
| Strongly Agree | Strongly Agree | Agree | ||
| Strongly Agree | Strongly Agree | |||
| Strongly Agree | Strongly Agree | |||
| Agree | Agree | Agree | Agree | |
| Agree | Agree | Strongly Agree | Strongly Agree | |
| Agree | Agree | Agree | Agree |
I think I figured out a formula for column S1 [=MID(H2,SEARCH("S1:",H2)+4,SEARCH(",",H2)-SEARCH("S1:",H2)-4)], but a having a hard time figuring out the LEN or MID and RIGHT functions. Thanks, in advance, for any thoughts or solutions!