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

Hello,

 

I've an xml file (it's German currency values) where column Amount ist a string column with values like this.

5,000; 4,000; 7,500

Now I have changed this from string to numeric with this statement.

New_Amount = round(input(Amount, commax32.),0.01);

 

My result is for the example values above is.

5; 4; 7,5

 

But I need these values.

5,00; 4,00; 7,50

 

What do I have to change?

 

Thank you and regards

Hans

 

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

Ok then do this

 

data eee;
   a = '7,50000';
   b = input(a, commax10.8);
   format b commax10.2;
run;

View solution in original post

3 REPLIES 3
PeterClemmensen
Tourmaline | Level 20

Use the Commax Format

 

data _null_;
   a = 7.5;
   format a commax8.2;
   put a=;
run;
Hansmuffs
Fluorite | Level 6

The value a in my case is a string. This solution is not working.

 

data eee;
   a = '7,50000';
   format a commax8.2;
   put a=;
run;
PeterClemmensen
Tourmaline | Level 20

Ok then do this

 

data eee;
   a = '7,50000';
   b = input(a, commax10.8);
   format b commax10.2;
run;

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