Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a load script where data has to be filtered based on [WBS Element].
I need data only starting with some [WBS Element] like
0043-,0053- , 0060-
Please help me in filtering data of this pattern.
Attached the Qvw.
Thanks,
Keerthi KS
Hi,
Try like this
LOAD
*
FROM DataSource
WHERE WildMatch([WBS Element], '0043-*','0053-*' , '0060-*');
Hope this helps you.
Regards,
jagan.
Hi,
Try like this
LOAD
*
FROM DataSource
WHERE WildMatch([WBS Element], '0043-*','0053-*' , '0060-*');
Hope this helps you.
Regards,
jagan.
May eb like:
Load
*
From <> where Wildmatch([WBS Element], '0043-*','0053-*' , '0060-*');
try this
=if(WildMatch([WBS Element],'0043-*','0053-*' , '0060-*'),[WBS Element])
Thanks a lot Jagan