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 strongm 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. nobyrnes

    Control Gplot names with BY groups

    Hey I have a standard proc graph gplot, with By groups. I find it very usefull but I cannot control the naming convention. They graphs are output graph1.gif, graph2.gif etc. I want to be able to control the graph name using the by group contents, something like graph_US_AL.gif...
  2. nobyrnes

    Add header Scripts to ODS HTML

    Hey, I make a lot of html pages and use the ODS HTML TEXT a lot. 1. Does anyone know how to remove the <p></p> from around the text it produces. 2. How can I force text into the header, eg <script>. Ive used the no_top_matter and added in the text from a file before but its very messy. I...
  3. nobyrnes

    Scatter plot with gradient for 3rd dimension...

    Hey, I am looking to make a 2d scatter plot but to use a gradient for the third dimension. Ive seen some gradients used for a proc gmap but I dont know if I can use this for a scatter??? My dataset looks like a b c x y N N is from 0 to 50, so I need 50 colors but I need it displayed as a...
  4. nobyrnes

    Sorting Proc Tabulate

    proc tabulate data=xx; var amount; table amount*(n sum); run; Two Questions: 1. How can I order by the "sum"? 2. How can I display only the top ten rows ordered by the sum variable? I know I can use order=freq to order by N, but thats not what I want. Thanks, N
  5. nobyrnes

    TABLE title

    Hey, I have a proc tabulate with 3 cols of different vars. And I want to be able to add a single row on the top of the table that spans the entire width of the table, and I want to center text within it. Proc tabulate data=C_Data.dataplot; Var Num_Loans Customer_number total_nla_per_cust_open...
  6. nobyrnes

    Draw FREQ line graph?

    Hey, Any ideas on how to draw a gchart of freq using a continous line? This doesnt work. symbol i=join; proc gchart data=data; vbar dateyymm/freq discrete; run; If I use gplot, how do I use FREQ? Thanks, Niall
  7. nobyrnes

    Style /BOX with a &lt;div&gt;

    Hey, I am trying to set all the styles in my stylesheet, however I cannt set the /Box or title2, title3 etc? This is what I am trying. Tried /box=[label='<div id="boxname">blah</div>' I am using Proc template and tagattr for the rest, but I cannot find the box or titles. Thanks.... N
  8. nobyrnes

    PCTN*PCTN

    Hey, I want to make a table like this: E F Tot % A 2 4 6 60% B 2 2 4 40% Total 4 6 10 100% % 40% 60% 100% I have 2 class variables: Ive tried the obvious: doesnt work. TABLE CLASS1 all PCTN<CLASS2>,CLASS2*n all...
  9. nobyrnes

    Format particular cells in Proc Tabulate

    Hey, I tried all these and only one worked: 1.Using excel loses formatting, particularly when there are many tables. 2.Using css doesn't work, because it is impossible to set up an external style sheet to colour each cell of a row, (unless you set up each cell as a <div id="xx">but SAS cant do...
  10. nobyrnes

    Format particular cells in Proc Tabulate

    Hey, Thanks Chris, Ive been making Excel format those cells that I want, however when I open the file in a browser afterwards, it has lost most of the other formatting, like <center> etc... How can I use that traffic lighting and also maintain the contents of the cell (the value of the cell...
  11. nobyrnes

    CENTER A TABLE IN ODS HTML

    Thanks Larry, What if I only want to center a few tables? N
  12. nobyrnes

    CENTER A TABLE IN ODS HTML

    Hey, Whats the most simple way to center a table using the ODS HTML commands? N
  13. nobyrnes

    Format particular cells in Proc Tabulate

    Hey, I create a table say 5cells by 5cells. I can use the code below to colour the background of a column of cells however I want to colour just particular cells. (I dont want to colour on a condition of the contents of a cell). For example I want to colour the first 2 cells of the first 2...
  14. nobyrnes

    macro questions?

    Excels returns "Cannot find file output..xls
  15. nobyrnes

    macro questions?

    Why cant I use proc format in a macro I call. I keep getting errors with this? %macro R061_Key_Summary_output_Subseg(Datain=, Dataout=, Seg=, Subseg=, Provider=&ProviderText, ReportDateText=,); Data &Datain; Set &Datain; PROC FORMAT; VALUE picture p8r low - < 5 = '0009.99%' 5 - high =...

Part and Inventory Search

Back
Top