@dbcolum w/ temp variable

Hello,

I am trying to use a temp variable in a dbcolumn formula and I recieve the following error ( ERROR: Incorrect data type for operator or @Function: Text expected )

Is this possible or am i coding this wrong?

tYr := @Year(@Now);

tPYr := tYr-1;

tNov := “Nov” + tPYr;

@DbColumn(“” : “NoCache” ; “” : “” ; tNov ; 3 )

Subject: @dbcolum w/ temp variable

tPYR is numeric while “Nov” is text. Change tNov to

tNov := “Nov” + @text(tPYR);

and perform the @Dbcolumn value.