Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

subfield?

Hi,

I have the a field that is formatted like this example:- 100:780:876:600000

What is the easiest way to have each number in its own field in the expression formula?

Cheers,

Laura

4 Replies
arulsettu
Master III
Master III

Hi

try like this

SubField('100:780:876:600000',':',1) as filed1,

SubField('100:780:876:600000',':',2) as filed2

SubField('100:780:876:600000',':',3) as filed3

SubField('100:780:876:600000',':',4) as filed4

Anonymous
Not applicable
Author

Hi,

the field that I used was just to show an example of the format.  their all different

arulsettu
Master III
Master III

can u post sample and your expecting result

Anonymous
Not applicable
Author

I've used MID:

MID([Tech1Data],8,3)