BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
rbettinger
Lapis Lazuli | Level 10

I want to write a SAS/IML debugging module that I can call with an argument that may be numerical, character, or a list or a table.

This module would print varying messages conditional upon the data type, e.g., 'N', 'C', or, let's say, 'L' for a list, and 'T' for a table.

Is there a SAS/IML function that is similar to the DATA STEP vartype() function that I can use to return the data type of an argument to a module?

The "call struct()" module gives me good information. Is there some way to utilize this module as a function so that I may conditionally execute code based on the contents of a data structure?

1 ACCEPTED SOLUTION

Accepted Solutions
IanWakeling
Barite | Level 11

In IML the function is called TYPE() and works exactly how you are expecting, for example:

   x = 4;
   if type(x)='N' then do;
     /* x is numeric so OK to do stuff... */ 
     x = x # 3;
	 print x;
   end;

View solution in original post

2 REPLIES 2
IanWakeling
Barite | Level 11

In IML the function is called TYPE() and works exactly how you are expecting, for example:

   x = 4;
   if type(x)='N' then do;
     /* x is numeric so OK to do stuff... */ 
     x = x # 3;
	 print x;
   end;
rbettinger
Lapis Lazuli | Level 10
Thank you very much, Ian.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

From The DO Loop
Want more? Visit our blog for more articles like these.
Discussion stats
  • 2 replies
  • 1019 views
  • 4 likes
  • 2 in conversation