mirror of
https://github.com/sasjs/core.git
synced 2026-01-05 00:20:05 +00:00
Compare commits
11 Commits
v4.48.2
...
all-contri
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1db610a122 | ||
|
|
c9e431142c | ||
|
|
2b2aa5eb58 | ||
|
|
1ac2b480a6 | ||
|
|
4e53544b66 | ||
|
|
9b5f1cf170 | ||
|
|
703fe4ef38 | ||
|
|
f4a4263046 | ||
|
|
02bf9c85db | ||
|
|
5835cfaa83 | ||
|
|
b50521a8de |
@@ -153,6 +153,15 @@
|
||||
"contributions": [
|
||||
"code"
|
||||
]
|
||||
},
|
||||
{
|
||||
"login": "andyjessen",
|
||||
"name": "andyjessen",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/62343929?v=4",
|
||||
"profile": "https://github.com/andyjessen",
|
||||
"contributions": [
|
||||
"doc"
|
||||
]
|
||||
}
|
||||
],
|
||||
"contributorsPerLine": 7,
|
||||
|
||||
@@ -248,7 +248,7 @@ The following repositories are also worth checking out:
|
||||
|
||||
## Contributors ✨
|
||||
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
||||
[](#contributors-)
|
||||
[](#contributors-)
|
||||
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
||||
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
||||
|
||||
@@ -275,6 +275,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
||||
<td align="center" valign="top" width="14.28%"><a href="https://github.com/henrik-forsell"><img src="https://avatars.githubusercontent.com/u/109935936?v=4?s=100" width="100px;" alt="Henrik Forsell"/><br /><sub><b>Henrik Forsell</b></sub></a><br /><a href="https://github.com/sasjs/core/commits?author=henrik-forsell" title="Documentation">📖</a></td>
|
||||
<td align="center" valign="top" width="14.28%"><a href="http://rudvfaden.github.io/"><img src="https://avatars.githubusercontent.com/u/2445577?v=4?s=100" width="100px;" alt="Rud Faden"/><br /><sub><b>Rud Faden</b></sub></a><br /><a href="https://github.com/sasjs/core/commits?author=rudvfaden" title="Code">💻</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top" width="14.28%"><a href="https://github.com/andyjessen"><img src="https://avatars.githubusercontent.com/u/62343929?v=4?s=100" width="100px;" alt="andyjessen"/><br /><sub><b>andyjessen</b></sub></a><br /><a href="https://github.com/sasjs/core/commits?author=andyjessen" title="Documentation">📖</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
39
all.sas
39
all.sas
@@ -1684,7 +1684,7 @@ Usage:
|
||||
|
||||
Usage:
|
||||
|
||||
%put mf_isblank(&var);
|
||||
%put %mf_isblank(&var);
|
||||
|
||||
inspiration:
|
||||
https://support.sas.com/resources/papers/proceedings09/022-2009.pdf
|
||||
@@ -10184,6 +10184,7 @@ select distinct lowcase(memname)
|
||||
@li mp_aligndecimal.sas
|
||||
@li mp_cntlout.sas
|
||||
@li mp_lockanytable.sas
|
||||
@li mp_md5.sas
|
||||
@li mp_storediffs.sas
|
||||
|
||||
<h4> Related Macros </h4>
|
||||
@@ -14176,6 +14177,22 @@ ods package close;
|
||||
(given various practical restrictions) are described here to enable
|
||||
consistency when dealing with format data.
|
||||
|
||||
The HLO variable may have a number of values, documented here due to the
|
||||
256 char label description length limit:
|
||||
|
||||
F=Standard format/informat.
|
||||
H=Range ending value is HIGH.
|
||||
I=Numeric informat.
|
||||
J=Justification for an informat.
|
||||
L=Range starting value is LOW.
|
||||
M=MultiLabel.
|
||||
N=Format or informat has no ranges, including no OTHER= range.
|
||||
O=Range is OTHER.
|
||||
R=ROUND option is in effect.
|
||||
S=Specifies that NOTSORTED is in effect.
|
||||
U=Specifies that the UPCASE option for an informat be used.
|
||||
|
||||
|
||||
**/
|
||||
|
||||
|
||||
@@ -14183,9 +14200,11 @@ ods package close;
|
||||
|
||||
proc sql;
|
||||
create table &libds(
|
||||
TYPE char(1) label='Type of format - either N (num fmt), C (char fmt), I (num infmt) or J (char infmt)'
|
||||
TYPE char(1) label=
|
||||
'Format Type: either N (num fmt), C (char fmt), I (num infmt) or J (char infmt)'
|
||||
,FMTNAME char(32) label='Format name'
|
||||
,FMTROW num label='CALCULATED Position of record by FMTNAME (reqd for multilabel formats)'
|
||||
,FMTROW num label=
|
||||
'CALCULATED Position of record by FMTNAME (reqd for multilabel formats)'
|
||||
,START char(32767) label='Starting value for format'
|
||||
/*
|
||||
Keep lengths of START and END the same to avoid this err:
|
||||
@@ -14205,18 +14224,8 @@ ods package close;
|
||||
,NOEDIT num length=3 label='Is picture string noedit?'
|
||||
,SEXCL char(1) label='Start exclusion'
|
||||
,EEXCL char(1) label='End exclusion'
|
||||
,HLO char(13) label='Additional information.
|
||||
F=Standard format/informat.
|
||||
H=Range ending value is HIGH.
|
||||
I=Numeric informat.
|
||||
J=Justification for an informat.
|
||||
L=Range starting value is LOW.
|
||||
M=MultiLabel.
|
||||
N=Format or informat has no ranges, including no OTHER= range.
|
||||
O=Range is OTHER.
|
||||
R=ROUND option is in effect.
|
||||
S=Specifies that NOTSORTED is in effect.
|
||||
U=Specifies that the UPCASE option for an informat be used.'
|
||||
,HLO char(13) label=
|
||||
'More info: https://core.sasjs.io/mddl__sas__cntlout_8sas_source.html'
|
||||
,DECSEP char(1) label='Decimal separator'
|
||||
,DIG3SEP char(1) label='Three-digit separator'
|
||||
,DATATYPE char(8) label='Date/time/datetime?'
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
Usage:
|
||||
|
||||
%put mf_isblank(&var);
|
||||
%put %mf_isblank(&var);
|
||||
|
||||
inspiration:
|
||||
https://support.sas.com/resources/papers/proceedings09/022-2009.pdf
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
@li mp_aligndecimal.sas
|
||||
@li mp_cntlout.sas
|
||||
@li mp_lockanytable.sas
|
||||
@li mp_md5.sas
|
||||
@li mp_storediffs.sas
|
||||
|
||||
<h4> Related Macros </h4>
|
||||
|
||||
@@ -6,6 +6,22 @@
|
||||
(given various practical restrictions) are described here to enable
|
||||
consistency when dealing with format data.
|
||||
|
||||
The HLO variable may have a number of values, documented here due to the
|
||||
256 char label description length limit:
|
||||
|
||||
F=Standard format/informat.
|
||||
H=Range ending value is HIGH.
|
||||
I=Numeric informat.
|
||||
J=Justification for an informat.
|
||||
L=Range starting value is LOW.
|
||||
M=MultiLabel.
|
||||
N=Format or informat has no ranges, including no OTHER= range.
|
||||
O=Range is OTHER.
|
||||
R=ROUND option is in effect.
|
||||
S=Specifies that NOTSORTED is in effect.
|
||||
U=Specifies that the UPCASE option for an informat be used.
|
||||
|
||||
|
||||
**/
|
||||
|
||||
|
||||
@@ -13,9 +29,11 @@
|
||||
|
||||
proc sql;
|
||||
create table &libds(
|
||||
TYPE char(1) label='Type of format - either N (num fmt), C (char fmt), I (num infmt) or J (char infmt)'
|
||||
TYPE char(1) label=
|
||||
'Format Type: either N (num fmt), C (char fmt), I (num infmt) or J (char infmt)'
|
||||
,FMTNAME char(32) label='Format name'
|
||||
,FMTROW num label='CALCULATED Position of record by FMTNAME (reqd for multilabel formats)'
|
||||
,FMTROW num label=
|
||||
'CALCULATED Position of record by FMTNAME (reqd for multilabel formats)'
|
||||
,START char(32767) label='Starting value for format'
|
||||
/*
|
||||
Keep lengths of START and END the same to avoid this err:
|
||||
@@ -35,18 +53,8 @@
|
||||
,NOEDIT num length=3 label='Is picture string noedit?'
|
||||
,SEXCL char(1) label='Start exclusion'
|
||||
,EEXCL char(1) label='End exclusion'
|
||||
,HLO char(13) label='Additional information.
|
||||
F=Standard format/informat.
|
||||
H=Range ending value is HIGH.
|
||||
I=Numeric informat.
|
||||
J=Justification for an informat.
|
||||
L=Range starting value is LOW.
|
||||
M=MultiLabel.
|
||||
N=Format or informat has no ranges, including no OTHER= range.
|
||||
O=Range is OTHER.
|
||||
R=ROUND option is in effect.
|
||||
S=Specifies that NOTSORTED is in effect.
|
||||
U=Specifies that the UPCASE option for an informat be used.'
|
||||
,HLO char(13) label=
|
||||
'More info: https://core.sasjs.io/mddl__sas__cntlout_8sas_source.html'
|
||||
,DECSEP char(1) label='Decimal separator'
|
||||
,DIG3SEP char(1) label='Three-digit separator'
|
||||
,DATATYPE char(8) label='Date/time/datetime?'
|
||||
|
||||
Reference in New Issue
Block a user