Skip to main content

i have the following formula in process builder.  I would like this formula to update to the field in BOLD  Below is the formula and it works perfectly

 

FYI result displays on a new line each time and adds to the data already held in this field giving a historical record of each time/date/user changes a stage in the system.    (TEXT(DAY(DATEVALUE([Opportunity].LastModifiedDate )))& "-"& TEXT(MONTH(DATEVALUE([Opportunity].LastModifiedDate )))& "-"&  TEXT(YEAR(DATEVALUE([Opportunity].LastModifiedDate )))& "-"& ([Opportunity].LastModifiedBy.FirstName)  &" "&  ([Opportunity].LastModifiedBy.LastName) & " "&  text([Opportunity].StageName )& " "& br() & PRIORVALUE([Opportunity].Stage_Update_Tracking__c ) >/b>  

6 answers
  1. Jul 28, 2022, 6:29 AM

    Hi Sharene,

     

    You can use the below formula in process builder to make the text bold.

     

    '<h1><span style="color: #.ff0000;"><h1><span style="color:#.ff0000; font-weight: bold;">'

    &

    (TEXT(DAY(DATEVALUE([Opportunity].LastModifiedDate )))& "-"&

    TEXT(MONTH(DATEVALUE([Opportunity].LastModifiedDate )))& "-"&

    TEXT(YEAR(DATEVALUE([Opportunity].LastModifiedDate )))& "-"&

    ([Opportunity].LastModifiedBy.FirstName) &" "&

    ([Opportunity].LastModifiedBy.LastName) & " "&

    text([Opportunity].StageName )& " "& br() &

    PRIORVALUE([Opportunity].Stage_Update_Tracking__c )

     

    Note: Try modifying the styling according to your convenience.

0/9000