User talk:ArtCarpenter
From sasCommunity
Art, this is a note from --LainieH 19:30, 8 December 2009 (UTC)
I was watching this page, and noticed someone posted a note here: http://www.sascommunity.org/wiki/Talk:Popular_Links.
Did you want to respond or should I direct him to a discussion forum on the support site?
Tips Discussions:
Tips:Embedding Links in a Title
Great tip, Art. It shows the versatility/flexibility of SAS programs.
Will there be further discussion at SGF in DC. March 22-25?
Thanks Charlie, I will be doing both a tutorial and a HOW on building links.--Art Carpenter 11:49, 13 February 2009 (EST)
Demo for the use of SAS code on the WIKI
You can show SAS code as it appears in the editor. Use the source lang=sas tag
data future_holidays; label year = "Year" mothersday= "Mothers Day" presidentsday = "Presidents Day" victoriaday = "Victoria Day" ; format mothersday presidentsday victoriaday worddate.; do year = 2009 to 2019 by 1; mothersday = holiday("MOTHERS",year); presidentsday=holiday("USPRESIDENTS",year); victoriaday=holiday("VICTORIA",year); output; end; run; proc print label; run;
