Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
How can i do the following in the script?
if TransType = '11','12','13' TransType
so i only want data from the table if TransType is 11, 12 13
Thanks
May be use Where Statement:
LOAD FieldName
FROM Table
Where Match(TransType, 11, 12, 13);
May be use Where Statement:
LOAD FieldName
FROM Table
Where Match(TransType, 11, 12, 13);
In the where condition :
Where ... Wildmatch([TransType], '11','12','13') > 0
....Again Thanks!!!
IF(TransType > 10 and TransType < 14, DO SOMETHING)
No problem