Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

selectio

please help me out

5 Replies
Anonymous
Not applicable
Author

try this at script level into your table:

like

Load *,

mid(FieldName,4,5) as Year

from Tablename

where mid(FieldName,4,5)>13;

Hope this will help!!

sunny_talwar

May be this:

SubField([INCIDENT REF], '/', -1) as yourNewFieldName

s1:

LOAD SubField([INCIDENT REF], '/', 1) & '/' & SubField([INCIDENT REF], '/', 2) as [INCIDENT REF],

     [Adjuster Name],

     [Claim Number],

     [Claim Status],

     [Net Paid],

     [Remaining Reserve],

     [Total Experience]

FROM

[AV08Exclude.xls]

(biff, embedded labels, table is Sheet1$);

s1:

LOAD SubField([INCIDENT REF], '/', 1) & '/' & SubField([INCIDENT REF], '/', 2) as [INCIDENT REF],

     [Adjuster Name],

     [Claim Number],

     [Claim Status],

     [Net Paid],

     [Remaining Reserve],

     [Total Experience]

FROM

[AV08Exclude.xls]

(biff, embedded labels, table is Sheet1$)

Where Match(SubField([INCIDENT REF], '/', 2), '14', '15');

Anonymous
Not applicable
Author

you can also replace mid() with subfield() like:

subfield(FieldName,'/',2) as Year

mohammadkhatimi
Partner - Specialist
Partner - Specialist

Try this..

SubField([INCIDENT REF],'/',2) as NewField

Hope this will helps u..

Regards,

Mohammad

avinashelite

try like this :

LOAD *

where SubField([Field_name],'/',2)>13

from

tablename;