I am trying to give a field, which is a dateformula, a value via code
FieldName := 3M;
When I compile is get
Type conversion not possible becuase 1 one of the operators contains an invalid type.
DateFormula := integer;
How can I set the value?
Thanks
Answers
EVALUATE(FieldName,'3M');
instead.