Skip to main content The new Salesforce certifications experience is live! Visit Trailhead Academy to explore your new certifications homepage.
Hi I'm a noob. I just need to make a couple of fields linked so if a check box is ticked the rich text field is accessible. Check box field is Auction_Lots_Won and RTF is Lots_Won.

 

Other than having the RTF is it possible to insert a field that displays as a table with 4 columns. An Auction Lot Winner may win more than one prize and I figure its more structured than an RTF.

 

Thanks
1 answer
  1. Aug 2, 2019, 11:00 PM

    Andrew, Try the below, please

    And(

    Auction_Lots_Won__c = True,

    ISBLANK(RTF__C)

    )

    Replace the highlighted in BOLD with your actual field API names
0/9000