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: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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