Tag: Macro Quoting

Macro Quoting in SAS Data Integration Studio

You can run the following piece of codes successfully in these 3 SAS programming environments: BASE SAS Enterprise Guide: create a new “File-New-Program” SAS Data Integration Studio: create a new “Tool-Code Editor” %let species="Setosa" "Versicolor"; data a;     set sashelp.iris;     where species in (&species); run; Then create a Transformation in SAS Data Integration Studio […]