> i have a CHARACTER VARIABLE in which dates are
> partially written, ie. '2007-09', '2010-10' etc. Now
> i have to find the last date of the month ie. in
> 2007-09, last date in the month 09 added to the new
> variable representing like 2007-09-30 etc. Can some
> one help me in doing this.
>
intnx( 'month', input( cats(your_char_var, '-01'), yymmdd10.), 0, 'ending' )
... View more