Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a group of data where i have regions as one of the column header
Like
OGC
JNY
JIN
JAN
JIS
JCN
DC
JHK
I wan't a filter at the start with JIN and DC
I am using single below expression for single filter in Data Editor -
Load [ODC], [Date], ... from [Lib://...] *ooxml, ...) Where OGC = 'JIN';
But for multiple filter this donot work -
Load [ODC], [Date], ... from [Lib://...] *ooxml, ...) Where OGC = 'JIN' OR 'DC';
this donot work.
Please help.
Thanks,
Vikas
In a SQL statement you would need to use a different syntax:
SQL
SELECT
......
WHERE OGC IN('JIN','DC');
Where OGC = 'JIN' OR OGC= 'DC';
I am sure you have tried like this as well!
use this
Load [ODC], [Date], ... from [Lib://...] *ooxml, ...) Where match(OGC , 'JIN' OR 'DC') ;
It gives me OR Function error
Try this
Load [ODC], [Date], ... from [Lib://...] *ooxml, ...) Where match(OGC , 'JIN' , 'DC')
Match function also do not work
Try this
Load [ODC], [Date], ... from [Lib://...] *ooxml, ...) Where wildmatch(OGC , 'JIN' , 'DC')
Wildmatch function also not getting recognised
Please share some sample data.
Hi,
I am sharing excel with you
I want data for
JIN and DC
Thanks,
Vikas