Hi,
You have different ways to get it.
First variant: Insert three fields in the row, a calculated field, an Instruction text field, and the second calculated field.
Tip: for the instruct text field enter only the label with the text “or”
Second variant: Insert only one calculated field where the result of the equations is the composed text. For example:
If the field “a” is the fieldname1, and the field “b” is the fieldname2, the equation associated to the calculated field would be:
(fieldname1+fieldname2)+" or "+(fieldname1+fieldname2)
Third variant: Insert only one “HTML Content” field, and enter as its content, the div tag:
<div id="result"></div>
And finally, you simply should display the result into the div tag:
(function(){
jQuery( '#result' ).html( (fieldname1+fieldname2)+" or "+(fieldname1+fieldname2) );
})()
and that’s all.
Best regards.