Answer: don't try to use INITIAL for this.Hi,
How can i set init value for variable to be some other variable, and how to set init for date var to be today + 1.
DEF VAR a AS DATE INIT TODAY + 1.
DEF VAR b AS DATE INIT a.
OE 10.2.
define variable a as date no-undo.
define variable b as date no-undo.
assign
a = today + 1
b = a
.
display a b.