|
This post was updated on .
Hi
i've looking the web and i installed the packages required
I need to run the following syntax
-------------------------------------
WEIGHT BY FACT.
USE ALL.
COMPUTE filter_$=(cse_especifico>=8 & cse_especifico<=9).
VARIABLE LABELS filter_$ 'cse_especifico>=8 & cse_especifico<=9 (FILTER)'.
VALUE LABELS filter_$ 0 'Not Selected' 1 'Selected'.
FORMATS filter_$ (f1.0).
FILTER BY filter_$.
EXECUTE.
CROSSTABS
/TABLES=CINE BY REGION
/FORMAT=AVALUE TABLES
/CELLS=COUNT
/COUNT ROUND CELL.
---------------------------------
I need to run that code to all the files in the folder \\YYZ_S\DB
So, i saved the syntax desired like pro.sps. Besides, i don't want to write the files, just process them and close them and so on.
The statistics visor shows me this
SPSSINC PROCESS FILES
SYNTAX="C:\Users\JC\DB\pro.sps" OUTPUTDATADIR="\\YYZ_S\DB" CONTINUEONERROR=YES
VIEWERDIR= "C:\Users\JC\Desktop" CLOSEDATA=YES
MACRONAME="!JOB" LOGFILEMODE=APPEND
/MACRODEFS ITEMS.
But i receive this message
Either FILELIST or INPUTDATA must be specified but not both
What am i doing so wrong?
|