Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
please help me out
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!!
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');
you can also replace mid() with subfield() like:
subfield(FieldName,'/',2) as Year
Try this..
SubField([INCIDENT REF],'/',2) as NewField
Hope this will helps u..
Regards,
Mohammad
try like this :
LOAD *
where SubField([Field_name],'/',2)>13
from
tablename;