Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
beck_bakytbek
Master
Master

sensitive sharing of content with subfield()-funktion

Hi Folks,

i got a situation:

my field does look like:

Case 1: 1.4000_3,00X2500X1219_1_D

Case 2: 1.4000_3,00x2700x3000

i'va shared this field by using of subfield():

for example:

Case1:  Subfield(MyField,'X',2) = 2500 does look great,

but in the case 2 (due to small x) my output does not work.

my question is: how can i share my content within field, if i have some deviation like big X and small x? Does anybody have any idea?

 

 

 

 

Labels (1)
1 Solution

Accepted Solutions
raman_rastogi
Partner - Creator III
Partner - Creator III

Something like this

Subfield(upper(MyField),'X',2)

 

Regards

Raman

View solution in original post

4 Replies
raman_rastogi
Partner - Creator III
Partner - Creator III

Something like this

Subfield(upper(MyField),'X',2)

 

Regards

Raman

arulsettu
Master III
Master III

try this 

 

SubField(Replace(('1.4000_3,00x2700x3000'),'x','X'),'X',2)

beck_bakytbek
Master
Master
Author

Hi Raman,

thanks a lot for your help and time

beck_bakytbek
Master
Master
Author

Hi Arulsettu,

 

thanks a lot for your help and time