BookmarkSubscribeRSS Feed
jdk123
Calcite | Level 5
dataset1:

2001 $500 $400 200 300
2002 $600 $300 100 200


After transpose:

dataset2:

_name_ 2001 2002

acct1 $500 $600
acct2 $400 $300
acct3 200 100
acct4 300 200


as you can see from dataset2 two different data types asscociated to the year variables.

I would like to perform some calculations for instance: acct1 $600-$500=$100;
acct3 100-200 =100. is this possible, if yes, how to handle this situation?

Thanks,
4 REPLIES 4
Cynthia_sas
SAS Super FREQ
Hi:
If you do a PROC CONTENTS on dataset2:
[pre]
proc contents data=dataset2;
run;
[/pre]

and then look at the list of variables, what is the type and format for the "year" variables???? SAS variable names cannot start with a number, they generally start with an underscore from transpose, such as _2001 and _2002. Can you paste the variable information to the forum???

cynthia
jdk123
Calcite | Level 5
the variable name is _2001 _2002
Cynthia_sas
SAS Super FREQ
and the PROC CONTENTS???
Ksharp
Super User
It is possible. $w.d is only the cloth of variable ,in sas it is numeric.
if you want different cloth for the same variable ,you can create another variable to contain the format then use function putn() or putc() to get it.

[pre]
_name_ 2001 2002 formate

acct1 $500 $600 dollar8.
acct2 $400 $300 dollar8.
acct3 200 100 8.
acct4 300 200 8.


[/pre]


Ksharp

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

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
  • 4 replies
  • 843 views
  • 0 likes
  • 3 in conversation