function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
sfdcvirajsfdcviraj 

Why BR() or <br/> do not work in formula field? What's wrong with my peice of code?

I have the below code in a formula : - 
 
​IF(Chk_Criteria1__c = true, 'Documentation|' & Remark_Criteria1__c & BR(), '') &

IF(Chk_Criteria2__c = true, 'Email Etiquette|' & Remark_Criteria2__c & BR(), '') &
I expect that BR() should break the lines when i display on VF Page, but it doesn't. Any problem that I'm missing? 

I see the below on VF page. 

User-added image


Pls help. Thanks.
 
Rahul SharmaRahul Sharma
Are you using apex:outputField to display the field value?
sfdcvirajsfdcviraj
No. 

Am using <apex:column> tag. Like below:- 

<apex:column >{!data.CheckThisCase__c}</apex:column>