0

Field into field

When I select ABA, in “Texto” i have predeterminated text “Drive to signal” and “Station 3”. But i want to have 2 fields that i can fill fast with numbers or letters in bold format. 

4 replies

null
    • Vaneik
    • 5 yrs ago
    • Reported - view

    Is it possible?

    • Ninox partner
    • RoSoft_Steven.1
    • 5 yrs ago
    • Reported - view

    Yes' Actually a RTF field accepts html code. You could do something with a button or in a field after update... like this: Texto := "Drive to signal <b>" + "Your Signal Numberfield" + "</b> Station 3 <b>" + "Your Station number field" + "</b>"

    Note that Your Texto field must be a RTF field.

    • Vaneik
    • 5 yrs ago
    • Reported - view

    Thanks a lot, with your formula i have this:

    A6711395-310E-4815-A798-1316E85C895E

    Its ok and i can use it ofc, but not exactly what i looking for. Now i have in bold “Your Signal Numberfield”, but there are any formula to create a field with HTML?, having in the field Texto: drive to signal (create new number field inside Texto field) Station 3 (create new text field....)

    sorry if i cant explain better and thanks a lot!!

    • Ninox partner
    • RoSoft_Steven.1
    • 5 yrs ago
    • Reported - view

    Where are the 2 numbers coming from? You could use 2 extra Fields like my example above e.g. : 1 field called Signal and one field called Station.

    The code would be : Texto := "Drive to signal <b>" + Signal + "</b> Station 3 <b>" + Station + "</b>"