Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Thanks
do u want remove the data from chart?
if yes, then create the calculated dimension instead of name dimension in chart.
if(Right(Name,4)<>'n.a.',Name)
do u want remove the data in script part?
Load * from ur table
where Right(Name,4)<>'n.a.';
Regards,
Kabilan K.
You may try below where with LOAD statement:
Where SubStringCount(Name,'n.a.')=0;
Regards,
som
do u want remove the data from chart?
if yes, then create the calculated dimension instead of name dimension in chart.
if(Right(Name,4)<>'n.a.',Name)
do u want remove the data in script part?
Load * from ur table
where Right(Name,4)<>'n.a.';
Regards,
Kabilan K.
already tried dude , but not working ...
unfortunately getting nulls in the report .
You may try below where with LOAD statement:
Where SubStringCount(Name,'n.a.')=0;
Regards,
som
Hi Satti,
You can use below where clause. Hope your problem will be solve.
where not wildmatch(NAME,'n.a.*')
Thanks
Garry