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 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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