Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi i have a pivot table with values
Status
Completed
& Completed &pending
Pending
&Pending
I want to remove & symbol if the value start with &symbol i want result like
Status
Completed
Completed &pnlending
Pending
Pending
Try this.
Trim(If(Left(Field, 1) = '&', Mid(Field, 2), Field))
Tried not working brunpierre
Try this in your calucauted dimension
replace(Status, '&', '')
Thanks brun.sorry in my pivot table my values are like &
Completed
If we have & symbol it will start with next line.i have used chr(10)in my code
Hi BrunPierre.Thanks for your reply.I have status field like below.not like & securities services.I want to remove this & symbol if the values start with & symbol
I have status field like this
Did you tried this ?
YourTable:
LOAD
Replace(Status, '&', '') as Status
FROM YourDataSource;
Or
Anyone you can use
In calucauted dimension
replace(Status, '&', '')