cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Replace " from the string

Former Member
0 Likes
9,975

Hi, I am not able to remove " (double quotes) from a sting.

I am using replace function in webi but getting error.

example sting: Yellow stone"discovery"

i have tried like this: =replace([varible];""";"") but getting error. can anybody help me in removing the " from sting.

Thanks.

View Entire Topic
Former Member
0 Likes

As PadawanGirl stated, the special characters can be used with Char(); not directly.

So update your formula with Char(34) as below.

=Replace([Variable Name];Char(34);"")