Generate Name Formula

I don’t know if I’m being silly, but how on earth does one set the name of an entity to be a string based on multiple fields?

I want something akin to Format("%s at %s", Type, EventName)

This seems like it should be trivial and yet there’s no apparent way to handle it

In Formulas you can concatenate strings with the “+” operator, so
Type + " at " + EventName

SO SIMPLE

:sweat_smile:

Thank you