Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Friends,
I am having field called 'Name'
Record in the Name are Spell-Teleca,Spell-Indica,,Spell_Spanish,Spell-godrey,Spell-Inter
My requirement is
I want to show all the records in Name field Except Spell-Indica
Can i use Not match function
I am using Not Match(Name,'Spell-Indica') but it's not working can any one help to resolve this issue
THank You,
Satya
Hi friends,
Thank you for your Replies,
Actually My Requirement is I am having Field(Name) with records
Teleca Inter-ship, Max Inter-ship, Min Inter-ship, Teleca Exchange, Max Exchange, Min Exchange
I want to exclude Names which have Inter-ship
Thank you,
Satya
Try,
If(Not WildMatch(Name,'*Inter-ship*'),Name)
try like this..
assuming you are loading data from Database..
SQL
select *
from table1 where NAME not like '%Inter-ship%';
Again, using set analysis:
=sum({<Name -= {'*Inter-ship'}>} Sales)
Load
Name,
If(TextBetween(Name, '-','')='ship' ,Null(),Name)As New_Name
From
(ooxml, embedded labels, table is Sheet1);
Or
Load
Name
//If(TextBetween(Name, '-','')='ship' ,Null(),Name)As New_Name
From
(ooxml, embedded labels, table is Sheet1)
Where TextBetween(Name, '-','')<>'ship';
Hi,
Try This
Load
Name,
If(SubStringCount(Name,'Inter-ship')=0,Name) As New_Name