Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Kosa13

    Moving files with SAS

    You can do this using this code: Options noxwait; x move "c:\temp\excel.xls" "g:\commonfolder\"; Enjoy, Kosa.
  2. Kosa13

    File Shortcuts

    Hi, could you tell me how can I copy all my shortcuts from "File Shortcuts" to another SAS Profile ? Regards...
  3. Kosa13

    Posthtml

    Hello SAS programmers. I am trying to do (using ODS) very simple HTML site. I wrote a code like this: Data Fakedata; Length fakevar $ 1; Label fakevar = '00'X; Fakevar = ' '; Run; Proc Template; DEFINE STYLE Fish_Style; STYLE Body / backgroundimage ="C:\Temp\Fishing_Club\Files\Tlo_1.gif"...
  4. Kosa13

    macro questions?

    Change: PUT "'[open("c:\SASDatafile\&output.xls")]'"; To: PUT '[open("c:\SASDatafile\&output..xls")]'; I thing now will be OK.
  5. Kosa13

    Hyperlink in footnote & Pop-up window (ODS)

    Hello everyone, I still have problems with Footnote and Title in ODS and I have some more questions to using them. My questions is: 1) In Title1 I have good image, but in Title 2 I have image with Hyperlink and image in Title2 is arounded by purple border. How to remove this border ??? I used...
  6. Kosa13

    Get rid of missing values in PROC REPORT - Help!

    Interest option :) But how do this when we specify "OUT" file :) ? /****************************************************/ proc report data=p2005 Out=X (Drop=_Break_) nowindows missing headskip; column fac_id year,month,pd; where '01Mar2005'd <= date <= '01Mar2006'd; define fac_id / group...
  7. Kosa13

    Hyperlink in footnote &amp; Pop-up window (ODS)

    Thanks for Your help klaz2002. Now it's working correct. I could not find this in SUGI. Thanks... Thanks... Thanks...
  8. Kosa13

    Get rid of missing values in PROC REPORT - Help!

    Maybe something like this: /**********************************/ data p2005; input fac_id $ year month pd ; date=mdy(month,01,year); format date mmddyy10. ; datalines; FRE 2005 1 21 FRE 2005 2 12 FRE 2005 3 3 FRE 2005 4 24 FRE 2006 1 14 FRE 2006 2 6 FRE 2006 3 25 OAK 2005 1 20 OAK 2005 2 4 OAK...
  9. Kosa13

    Hyperlink in footnote &amp; Pop-up window (ODS)

    Hi, I tested footnote like this earlier but this code Footnote "<a href=author@contact_mail.pl>AUTHOR@CONTACT_MAIL.PL</a>" linkin my DISK (path) "C:\Temp\AUTHOR@CONTACT_MAIL.PL" (not my e-mail) and I have screen with text "The page cannot be displayed". Any ideas ? To my second question... I...
  10. Kosa13

    Hyperlink in footnote &amp; Pop-up window (ODS)

    Hello, I have 2 questions... 1) How to put shortcut (link) to my e-mail in footnote ? 2) How to show pop-up window with text "No data..." if file in "_val_" link does not exist ? Example code: /****************************/ Data X; Input Letters $1.; Cards; A B C D E F ; Run; Proc...

Part and Inventory Search

Back
Top