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

Hi every one ,How can I in SQL format the Amount Variables to get the Results in Euro Currency with the Thousands Groups in the Number the result should look like 123.456.789,12 €

1 ACCEPTED SOLUTION

Accepted Solutions
FreelanceReinh
Jade | Level 19

Hi @Abdulhamid,

 

Try the NLMNLEURw. format:

proc sql;
create table test (amount1 num, amount2 num);
insert into test values (123456789.12, -987654321.09);
select amount1 format=nlmnleur21.,
       amount2 format=nlmnleur21.
from test;
quit;

(But note the LOCALE dependency mentioned in the documentation.)

View solution in original post

4 REPLIES 4
FreelanceReinh
Jade | Level 19

Hi @Abdulhamid,

 

Try the NLMNLEURw. format:

proc sql;
create table test (amount1 num, amount2 num);
insert into test values (123456789.12, -987654321.09);
select amount1 format=nlmnleur21.,
       amount2 format=nlmnleur21.
from test;
quit;

(But note the LOCALE dependency mentioned in the documentation.)

Abdulhamid
Fluorite | Level 6
Thanks a lot!
Abdulhamid
Fluorite | Level 6
Thank You very munch!

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 25. 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
  • 4 replies
  • 553 views
  • 2 likes
  • 3 in conversation