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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1012 views
  • 0 likes
  • 2 in conversation