Differences between revisions 1 and 2
Revision 1 as of 2023-01-13 20:57:20
Size: 1121
Comment:
Revision 2 as of 2023-06-14 15:44:57
Size: 1181
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:

SPSS macros offer the following options for '''logic'''.

SPSS Macro Logic

SPSS macros offer the following options for logic.


Operators

The following logical operators are valid for logic control of SPSS macros.

Operator

!EQ, =

!NE, ~=

!GT, >

!GE, >=

!LT, <

!LE, <=

!OR, |

!AND, &

!NOT, ~


Conditional Processing

The !IF ... !THEN ... !IFEND syntax is used for conditional processing inside a macro. Additional conditions can be expressed with !IF !ELSE or !ELSE.

define !export(type = !tokens(1))
  !IF (!type !EQ "xlsx") !THEN
    save translate /outfile="export.xlsx" /type=xlsx /version=12 /map /replace /fieldnames /cells=values.
  !ELSE !IF (!type !EQ "dta") !THEN
    save translate /outfile="export.dta" /type=stata /version=8 /edition=se /map /replace.
  !ELSE
    save outfile="export.sav".
  !IFEND
!enddefine

Inside the !IF construct, string literals can be left unquoted. This comes with the unexpected side-effect of case-sensitivity.


CategoryRicottone

SPSS/Macro/Logic (last edited 2024-10-01 21:36:35 by DominicRicottone)