SPLIT_TO_RECORD | Qlik Cloud Help
Skip to main content Skip to complementary content

SPLIT_TO_RECORD

Last updated: 9/14/2026

Returns the given string split by the provided delimiter.

Syntax

SPLIT_TO_RECORD(fieldNames, splitBy, filterEmptyValues, value)

Arguments

Name Type Description Default Value
fieldNames string
splitBy string ','
filterEmptyValues boolean false
value string

Examples

fieldNames splitBy filterEmptyValues value Output
'a,b,c' ',' false '1,2,3,4' {a: `1`, b: `2`, c: `3`}
'a,b,c' ',' false '1,2' {a: `1`, b: `2`, c: ``}
'a,b,c' ',' true '1,,3' {a: `1`, b: ``, c: `3`}

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – please let us know!