Hi,
I have a trouble to getting the work week from rows. Let's say I have a date and time format like this
I tried following things by following the JSL manual @ page 150 and so forth but could not resolve this,
first I thought that I need to get rid of time values
dt << New Column( "Date_new",
Numeric, Continuous,
Formula(Format(:Name("Date"), "m/d/y")),
);
Then now I have the dates like this
Next I tried to get ww of Date_new
dt << newcolumn("ww",Numeric, "Nominal",Week Of Year (Date MDY(:Date),3));
But got nothing! Why?