Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hallo zusammen,
wahrscheinlich ist es trivial, aber ich komme nicht auf die Lösung.
Ich habe eine Quell-Datei, die zu dem Ort auch eine Spalte mit allen Ortsteilen enthält. Die einzelne Ortsteile sind mit Kommata getrennt.
Nach dem Einlesen der Datei in Qlik Sense möchte ich pro Ortsteil eine separate Zeile haben:
Als Beispiel habe ich eine Exceldatei mit den Quell-Daten und mit der gewünschten Zielstruktur angefügt.
Über einen Tipp würde ich mich sehr freuen.
Viele Grüße
Kai
Hi Kai,
You can use SubField() for this. SubField without the third parameter (where you can choose which one you want) will just cut off the string and create multiple rows.
Table:
Load
Postlietzahl,
Bundesland,
Ort,
SubField( Ortsteile , ',' ) as Ortsteile
FROM {YourSource}
;
Jordy
Climber
Thank you.😀
So easy 🙂
Hi Kai,
You can use SubField() for this. SubField without the third parameter (where you can choose which one you want) will just cut off the string and create multiple rows.
Table:
Load
Postlietzahl,
Bundesland,
Ort,
SubField( Ortsteile , ',' ) as Ortsteile
FROM {YourSource}
;
Jordy
Climber
Thank you.😀
So easy 🙂