BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
james_alive
Calcite | Level 5

Hi All,

 

SAS Newbee.. I have a file having separate fields for amount and currency e.g.

Amount1 Amount2 Currency

 

There are 3 fixed currencies used inhere i.e. (INR-base, SGD, USD). No other currency type will ever be used. and they have the fixed value for exchange rate.

 

Currently I was usign the approach, created an exchange rate file (with fields Currency and EXRATE) and then using the currency as key field, multiplied the amount in file1 as per the exchange rate recieved.

 

I just wanted to know, if there's some other way round for this. Can we use PROC FORMAT or anyother way to make this happen in PROC SQL i.e. whenever I encounter SGD, multiply the amount field by exrate.

 

Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

A quick shot, using a format:

proc format library=work;
invalue exch
  'INR' = 1.5
  'SGD' = 2.5
  'USD' = 0.8
;
run;

data have;
input curr $ amount;
cards;
INR 100
SGD 200
USD 50
;
run;

data want;
set have;
internal = amount * input(curr,exch.);
run;

One might also consider using a hash object to store the exchange rates, but to me the format method is simpler.

 

View solution in original post

2 REPLIES 2
Kurt_Bremser
Super User

A quick shot, using a format:

proc format library=work;
invalue exch
  'INR' = 1.5
  'SGD' = 2.5
  'USD' = 0.8
;
run;

data have;
input curr $ amount;
cards;
INR 100
SGD 200
USD 50
;
run;

data want;
set have;
internal = amount * input(curr,exch.);
run;

One might also consider using a hash object to store the exchange rates, but to me the format method is simpler.

 

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 16. 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
  • 2 replies
  • 2163 views
  • 0 likes
  • 2 in conversation