The Table Viewer in SAS® Studio for Viya displays a missing value for the variable when a slash is part of the variable name


The Table Viewer in SAS Studio for Viya displays a missing value for the variable when a slash is part of the variable name. Here is example code that triggers this issue: 

data one;
  input 'record type'n 'glucose mg/dl'n 'scan glucose mg/dl'n;
datalines;
0 131 96
1 135 93
2 127 93
;
run;
proc print; 
run;

In this scenario, the Table Viewer displays missing values for the glucose mg/dl and scan glucose mg/dl variables. However, the PRINT procedure displays those variable values.