Forums
Home / Plugin: Calculated Fields Form / work with texts
(@mevabien22)
5 years ago
Assume the following situation:
fieldname1 = carlos fieldname2 = rodriguez
and I want the result to be displayed with the text:
Calculated Field = carlos / rodriguez
it’s possible?
From already thank you very much.
(@codepeople)
Hello @mevabien22
In javascript, the plus operator (+) is overloaded, it is used for summing numbers or concatenate texts. So, the equation would be simply:
fieldname1+'/'+fieldname2
Best regards.
Excellent!
Many thanks!
It has been a pleasure.