Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I have a table with column called "Group"
it has values like
Group
Group Client - ALL
Group Client- ABC
Group Client - XYZ
.
.
.
]
In the filter , I want to remove "Group Client -" chars from the value.
Any idea ?
PurgeChar(Group,'Group Client -') is not working.
Replace(Group,'Group Client -','') perhaps?
Like this.
Trim(SubField(Group,'-',-1))
@maddysalunke one more way
LOAD *,
trim(TextBetween(Group,'-','')) as String
FROM Table;