cancel
Showing results for 
Search instead for 
Did you mean: 

Replace Not using html tags

Former Member
0 Kudos

Am editing in my display string using a simple replace function

replace(column, ',' , '<br>' )

it doest read break at all

when i set paragraph to html tags it disappers as soon as anything is writting in display string

i have data like in column like

v1,v2,v3,v4 -

v1

v2

v3

v4

or

1.v1

2.v2

3.v3

4.v4

please tell me how is this posssilble

Accepted Solutions (0)

Answers (1)

Answers (1)

abhilash_kumar
Active Contributor
0 Kudos

Hi Heinz,

I've always written HTML tags in separate formulas. Why don't you create a separate formula and set that formula to interpret HTML tags instead?

I'm not sure if 'Display String' will ever be able to interpret HTML tags.

P.S: I just saw a weird behavior though. I created a simple string formula:

stringvar a;

a := "Abhilash, Kumar";

I then set this field to interpret HTML tags. Then I created this Display String Formula:

Replace(CurrentFieldValue,",","<br>");

It seems to work for the first time and as long as you DO NOT right-click the field and click OK.

There is an issue indeed, however I would recommend creating a separate formula to interpret HTML tags.

Hope this helps!

-Abhilash