Variant + Variant?

Hi all! I need to add the contend of a variant field to another variant field, but rec.variantfield1 := rec.variantfield2 + rec.variantfield3 is not allowed. Can this be solved without converting the fields into temporary variables, doing the addition and putting the result back to the table? Thanks, Alex

Try: rec.variantfield1 := STRSUBSTNO(’%1%2’,rec.variantfield2,rec.variantfield3);

Seems to work, thanks!