Forum Discussion

VanessaAlexande's avatar
VanessaAlexande
Qrew Member
5 months ago

I need for a Rich Text Formula sentence to be on two separate lines.

Hi!

I have this formula and need the disclaimer to be on the top line and "Please direct those requests to the appropriate Product Team on the second line. I tried to put \n but it doesn't work.

"<font color=indianred><font size=2><B>"&"***DISCLAIMER*** Please direct those requests to the appropriate Product Team."



------------------------------
Vanessa Alexander
------------------------------

8 Replies

  • The equivalent of \n for use in a Rich Text field is <br>

    as in BReak to a new line.

    so try

    "<font color=indianred><font size=2><B>"

    & "***DISCLAIMER***"

    & "<br>"

    & "Please direct those requests to the appropriate Product Team."



    ------------------------------
    Mark Shnier (Your Quickbase Coach)
    mark.shnier@gmail.com
    ------------------------------
    • ChayceDuncan's avatar
      ChayceDuncan
      Qrew Captain

      You can also separate your lines using <p> tags since they're block elements and will appear on their own lines like: 

      <p>DISCLAIMER**</p>

      <p>note goes here</p>

      The advantage is that you can style each individually to your hearts content such as making the Disclaimer bigger/bold/red etc like: 

      <p style='font-size: 20pt; color:red; font-weight:bold'>DISCLAIMER**</p>

      <p>note goes here</p>



      ------------------------------
      Chayce Duncan
      ------------------------------
      • VanessaAlexande's avatar
        VanessaAlexande
        Qrew Member

        can you show me how to underline Disclaimer? 



        ------------------------------
        Vanessa Alexander
        ------------------------------
    • VanessaAlexande's avatar
      VanessaAlexande
      Qrew Member

      You're amazing. Thank you so much. This worked! 



      ------------------------------
      Vanessa Alexander
      ------------------------------