BookmarkSubscribeRSS Feed
7 REPLIES 7
SASKiwi
PROC Star

What does this mean exactly? Please describe what you want in more detail. Are you referring to SAS's language settings or something else?

zenenceladus
Fluorite | Level 6

I need to convert the metadata and data in the .xpt file into Japanese.

japelin
Rhodochrosite | Level 12
If you use a SAS that can handle Unicode or DBCS, I think you can do it.
For example, SAS Studio, SAS 9.4 (English with DBCS), SAS 9.4 (Unicode support), or SAS 9.4 (Japanese).
zenenceladus
Fluorite | Level 6

Sorry if my need is unclear. I am not sure how to say this any other way. I created a ,xpt file in native English. I need to send it to a customer who wants the metadata and data to be in Japanese. How can I do the conversion.

ChrisNZ
Tourmaline | Level 20
Ok. Then you need to create your data sets using Japanese encoding. 
If your SAS session is already using this encoding then just create new tables and they'll have the correct encoding. Then export your tables.
To know the encoding run proc options option=encoding;run;

 

SASKiwi
PROC Star

Are you wanting to translate the text data stored in SAS datasets to Japanese? For example:

data want;
  MyData_English = 'Hello';
  MyData_Japanese = 'こんにちは'; * Kon'nichiwa;
run;

If so then SAS 9.4 has no functionality for this. You will need to use other tools like Google Translate for that and there is also a strong chance the translation won't be correct.

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

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
  • 7 replies
  • 1109 views
  • 2 likes
  • 4 in conversation