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
HNT_NeoHNT_Neo 

Possible to render a letter or checkmark for a True state on a checkbox formula?

Hello all, 

I have created a formula checkbox field, BG_CHBX_06_VALUE__c, and is checked when the value in the referenced field is greater than 75%. 

Is it possible to for it to render a checkmark or the word, YES instead of checking a box? If possible, how can I modify my existing formulat to do so? 

Thanks!

 
IF(
BG_CHBX_06__c > 0.75,True,False
)

 
Best Answer chosen by HNT_Neo
hitesh90hitesh90
Hello,

You have to use "Text" data type formula instead of "Checkbox".

Let me know if you have any question on this. Please mark this "Solved" if it helps.

Thank You,
Hitesh Patel
Email :- hiteshpatel.aspl@gmail.com
http://mrjavascript.blogspot.in/

All Answers

hitesh90hitesh90
Hello,

You have to use "Text" data type formula instead of "Checkbox".

Let me know if you have any question on this. Please mark this "Solved" if it helps.

Thank You,
Hitesh Patel
Email :- hiteshpatel.aspl@gmail.com
http://mrjavascript.blogspot.in/
This was selected as the best answer
HNT_NeoHNT_Neo

This worked but kept it with IF statement: 

IF( 
Differ_Siding_Attachment_Last_6_Months__c >=  0.90,"Yes","No"
)