Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi There,
Below is the screenshot of a spreadsheet I am trying to load into QlikView.
Basically, I have to split the Question ID values where two or more question IDs are joined with a + sign and create the below table to tell Qlik that these question IDs belong to the same dimension and report values.
Can someone help me achieve this?
Many Thanks,
I mean in your Load script like
LOAD Subfield(QuestionID, '+') AS QuestionID,
Dimension,
Report
FROM Table1.xlsx ;
Try this:
Subfield(QuestionID, '+') AS QuestionID
I mean in your Load script like
LOAD Subfield(QuestionID, '+') AS QuestionID,
Dimension,
Report
FROM Table1.xlsx ;
Hi Vish,
Thanks for your solution, it does the trick!
Laleh