mirror of
https://github.com/sasjs/core.git
synced 2026-01-11 02:50:06 +00:00
fix: adding a period to enable formats such as anydtdtme
This commit is contained in:
1
all.sas
1
all.sas
@@ -2004,6 +2004,7 @@ data _null_;
|
|||||||
if type=1 then informat='best.';
|
if type=1 then informat='best.';
|
||||||
else informat=cats('$',length,'.');
|
else informat=cats('$',length,'.');
|
||||||
end;
|
end;
|
||||||
|
else informat=cats(informat,'.');
|
||||||
in=catx(' ',in,name,':',informat);
|
in=catx(' ',in,name,':',informat);
|
||||||
if last then do;
|
if last then do;
|
||||||
call symputx('instat',in,'l');
|
call symputx('instat',in,'l');
|
||||||
|
|||||||
@@ -99,6 +99,7 @@ data _null_;
|
|||||||
if type=1 then informat='best.';
|
if type=1 then informat='best.';
|
||||||
else informat=cats('$',length,'.');
|
else informat=cats('$',length,'.');
|
||||||
end;
|
end;
|
||||||
|
else informat=cats(informat,'.');
|
||||||
in=catx(' ',in,name,':',informat);
|
in=catx(' ',in,name,':',informat);
|
||||||
if last then do;
|
if last then do;
|
||||||
call symputx('instat',in,'l');
|
call symputx('instat',in,'l');
|
||||||
|
|||||||
Reference in New Issue
Block a user