SAS Institute. The Power to Know

Base SAS(R) 9.2 Guide to Information Maps

Previous Page | Next Page

The INFOMAPS Procedure

MOVE FILTER Statement


Moves one or more filters to a new location.
MOVE FILTER "filter-ID" | ID_LIST=("filter-ID-1" <... "filter-ID-n">)
NEW_LOCATION="new-folder-location" </CREATE>;

Required Arguments

"filter-ID" | ID_LIST=("filter-ID-1" <... "filter-ID-n">)

specifies the filters to move. You can specify a single filter ID or you can use the ID_LIST= option to specify multiple filter names.

Tip: The filters specified in the ID_LIST= argument do not have to reside in the same folder.
NEW_LOCATION="new-folder-location" </CREATE>

specifies the new location.

/CREATE

specifies that the named folder or location is created automatically if it does not already exist.


Example

   /* Move the filters "over60", "over40", and "over20" from */
   /* the current folder to the "/Employees/AgeGroups" folder. */
   /* If the "/Employees/AgeGroups" folder does not */
   /* exist, then create it. */
move filter id_list=("over60" "over40" "over20")
   new_location= "/Employees/AgeGroups"  /create;

Previous Page | Next Page | Top of Page