Hello,
I have this formula in a combobox field. under use forumla for choices.
@year(@now);
@year(@now)-1
I get Error: Keyword. Not much to go on.
I need the current year and previous year to come up as choices in a combobox field.
Carlos.
Hello,
I have this formula in a combobox field. under use forumla for choices.
@year(@now);
@year(@now)-1
I get Error: Keyword. Not much to go on.
I need the current year and previous year to come up as choices in a combobox field.
Carlos.
Subject: See responses below; that’s not valid code (WAS: Combobox field)
Subject: Try this instead (edited)…
Y1 := @year(@now);@Text(Y1 : (Y1 - 1))
sorry, forgot the parens around (Y1 - 1)