ODS and Base Reporting

Build reports by using ODS to create HTML, PDF, RTF, Excel, text reports and more!
BookmarkSubscribeRSS Feed
Jaheuk
Obsidian | Level 7

what's wrong in this code??

I want to print label in bold, variables as normal . . .

For _C1_ I already tried _COL_  or _ROW_

 

COMPUTE before _page_  ;                                  
call define(_C1_,'style','style={font_weight=bold   }');  
   %if &VARI4. EQ 02 %THEN  line @1 'Nom:'   ;            
                     %ELSE  line @1 'Naam:'  ;;           
call define(_C1_,'style','style={font_weight=normal }');  
               line @1      naam    $50.   ;              
call define(_C1_,'style','style={font_weight=bold   }');  
   %if &VARI4. EQ 02 %THEN  line @1 'Agence:' ;           
                     %ELSE  line @1 'Agentschap:' ;;      
call define(_C1_,'style','style={font_weight=normal }');  
               line @1      aorg_cd $5.  ;                

3 REPLIES 3
ballardw
Super User

Without data, the complete code and the value(s) of the macro variables it is pretty hard to tell what may or may not be going on.

 

Do you actually have multiple call defines for the same column or is that examples of what you have tried?

Cynthia_sas
SAS Super FREQ
If you are using CALL DEFINE with absolute column numbers the absolute column numbers (just like variable names) must be quoted:
call define ('_c1_', ....) or
call define ('age',.....)

So I would start there. Without seeing more of your code, I'm not sure what you are trying to accomplish. But nothing will work until you quote the first argument. The only argument values that can be unquoted are _COL_ and _ROW_.

cynthia
Ksharp
Super User

You can conditional execute LINE in that way.

Only way to that is $varying200.  like:

 

 

if x=1 then do;want='xxxx'; len=0; end;

 else do;want='yyyyy'; len=200;end;

 

line want $varying200. len ;

 

.......

 

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 2869 views
  • 0 likes
  • 4 in conversation