WARNING: Some character data was lost during transcoding in column

Check your encoding and update it to UTF-8.

1. Problem

With WLATIN1 encoding, characters such as greater than or equal to are not imported. They are transformed into a non-printable 1A character (hexadecimal value) to indicate that the characters were substituted.

A warning is displayed in the log:

WARNING: Some character data was lost during transcoding in column:

UTF-8 encoding eliminates this problem.

2. What is the Current Encoding

2.1 SAS® Studio preference is not relevant in this case.

In SAS Studio’s preferences, the default text encoding is not a reliable piece of information when it comes to SAS® system encoding.

2.2 Checking the SAS® System Encoding

proc options option=encoding;
run;

Once the software is opened, it is no longer possible to modify the value for this option.

 

2.3 Checking the Encoding of the Dataset

Once the dataset is created, it is possible to check the encoding applied to the data.

In this example, the sheet1 dataset is created from the spreadsheet of the same name available in the Book1.xlsx file imported with the xlsx engine.

libname demo xlsx "&xxtraining./data/Book1.xlsx";

proc copy in=demo out=work ;
    select SHEET1;
run;

libname demo clear;

proc print data=sheet1;
run;
Book1.xlsx
Dataset sheet1
ods select Attributes;
proc contents data=sheet1;
run;

4. Changing the Encoding to UTF-8

Explanations on how to change the encoding under Windows and Unix are available at this address :

https://support.sas.com/kb/51/586.html

Here’s what I did under Windows.

  1. Locate the file sasv9.cfg in the directory: C:\Program Files\SASHome\SASFoundation\9.4
  2. Copy the file
  3. Rename the file to sasv9_old.cfg, so that you have a copy available to go back to the initial configuration in the event of a problem.
  4. Move the copy of the file to a location with write access for subsequent editing.
  5. Change the path given in the file to: C:\Program Files\SASHome\SASFoundation\9.4\nls\u8\sasv9.cfg
  6. Move back the sasv9.cfg file to its original location
  7. Reopen the software to take into account the changes

Additional Resource