Hello and thanks for the tip. I have looked at this example but it is not quite what I need as I am using code to do right to left scrolling within the table. This is done in PROC TEMPLATE and is working fine but the freezing of the left hand most column is what I am stuck on right now. Here is my TEMPLATE code for the scrolling (below). If I want to add some code like this to PROC TEMPLATE for the fixed column, is this possible? I have code written by another programmer but am not sure how to express it in PROC TEMPLATE. proc template; define style styles.test_withpanefromNA ; parent=styles.sasweb; style table from table / outputwidth=99% prehtml='<DIV style="overflow:auto; overflow-x: scroll; overflow-y: visible; direction: rtl; WIDTH:100%;HEIGHT:visible " id="data"> ' posthtml="</div>" ; end ; run ;
... View more