I have a formula based on a field value called text_TTArs ( data/time field -> showing only the time, eg: 15:31 ).
The formula is smth like this: @Hour(text_TTArs)*60+@Minute(text_TTArs). This returns a number.
What I want to do is to appear after this number: %. I’ve tried
(@Hour(text_TTArs)*60+@Minute(text_TTArs))&”%” but it isn’t working. I’ve tried + instead & but it’s the same.
Thank you!
You need to convert it to a string first:
(always use “+” to concatenate in @Formulas. “&” is the symbol for a logical “AND”)