If you have database A related to database B (many-to-one or one-to-one) you should be able to reference the content of fields in a linked B entity by using {{LinkFieldName.FieldName}}
where LinkFieldName is the name of the relation field (as viewed from A database) and FieldName is the name of the property field in the B database.
But FieldName needs to be ‘primitive’ i.e. a date/text/number field
Thank you. Useful information.
As to the question. I have everything in one database. It’s about transferring data within one database and one entity from one field to another.
I found a solution. But it is too cumbersome. I would be very glad if something more succinct came along.
Sulution:
Create a duplicate Text field for each Single field. In automation, set rules for each value of the Single field, so that the Text field will have an identical text value. Then we will add the value of the Text field to RichText, using {{Text}} syntax with a button.
Done.
What if the FieldName field is not ‘primitive’ ? If the field type is SingleSelect. How to get the value of this field in another database? I tried the {{{DB.Field.Name}}} syntax. It expectedly did not work))))). Relation — Many-to-one.
Do you mean that you have two DBs (1 and 2) and DB2 has a select field whose value you want get into a rich text field in DB1?
Assuming there can only be (max) one DB2 entity linked to each DB1 entity, then you should be able to just use {{FieldNameForDB2.FieldNameForSelect.Name}}
where FieldNameForDB2 is how the DB2 entity relation is named (when looking from DB1 entity) and FieldNameForSelect is the field name for the select field in DB2