-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMACROS.SAS
1349 lines (1186 loc) · 58.2 KB
/
MACROS.SAS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
*INCLUDE "D:/Dropbox/Documents/School/MACROS.SAS";
%MACRO example_wrds_pull();
%WRDS("open");
RSUBMIT;
PROC SQL;
CREATE TABLE funda AS
SELECT f.gvkey, f.datadate AS date, f.fyear AS YEAR
,nam.sic
,dvp AS DIVIDENDS /* 19: Dividends (Preferred/Preference) */
,dvc AS DIVIDENDS /* 21: Dividends (Common/Ordinary) */
,dlc AS DEBT_ST /* 34: Short Term Debt */
,dltt AS DEBT_LT /* 9: Long Term Debt */
,at /* 6: Book Assets (Total Assets) */
,lt /* 181: Book Liabilities (Total Liabilities) */
,oibdp /* 13: Operating Income Before Depreciation */
,prcc_f AS PRCC /* 199: Stock Price Fiscal YE */
,cshpri AS SHARES /* 54: Shares Outstanding */
,pstkl /* 10: Preferred Stock Liquidating Value */
,txditc /* 35: Deferred Taxes and Invst. Tax Credits */
,invt /* 3: Inventory */
,ppent /* 8: PPE Net */
,pi /* 170: Pre Tax Income */
,sale /* 12: Sales */
,re /* 36: Retained earnings */
,act /* 4: Current Assets - Total */
,lct /* 5: Current Liabilities - Total */
,csho /* 25: Common shares outstanding */
,xrd /* 46: Research and Development Expense */
,ajex /* 27: Adjustment Factor - Cumulative by Ex-Date */
FROM comp.funda AS f
LEFT JOIN comp.NAMES as nam
ON f.gvkey = nam.gvkey
WHERE %COMPWHERE(f)
AND DATADATE >= '01JAN1960'd
AND DATADATE <= '01JAN2012'd
/*AND nam.sic NOT LIKE "6%"*/;
CREATE TABLE crsp AS
SELECT DISTINCT t1.gvkey, dsf.permno, dsf.date
,ABS(dsf.prc) AS price, dsf.ret, dsf.retx
FROM (SELECT DISTINCT gvkey FROM funda) AS t1
LEFT JOIN crsp.CCMXPF_LINKTABLE AS lnk
ON lnk.gvkey = t1.gvkey
LEFT JOIN crsp.dsf AS dsf
ON dsf.permno = lnk.lpermno;
QUIT;
PROC DOWNLOAD
DATA= funda
OUT= c.funda;
RUN;
PROC DOWNLOAD
DATA= crsp
OUT= c.crsp;
RUN;
ENDRSUBMIT;
%WRDS("close");
%MEND example_wrds_pull;
%PUT %NRSTR(%%)WRDS("open/close");
%MACRO WRDS(action);
*This bit sets up the password file.;
%LET remotepwf = %STR(%SYSFUNC(GETOPTION(autoexec)));
%LET remotepwf = %SUBSTR(&remotepwf, 1, %EVAL(%LENGTH(&remotepwf)-12))wrds_password.sas;
filename remotepw "&remotepwf";
/* *Run this comment once to save your password into an encoded file;
* %WINDOW defines the prompt *;
%window info
#3 @5 'Please enter password:'
#3 @28 pass 32 attr=underline display=no;
* %DISPLAY invokes the prompt *;
%display info;
proc pwencode in="&password" out=remotepw;
run;
*/
%IF &action = "open" %THEN %DO;
%IF %SYSFUNC(FEXIST(remotepw)) %THEN %DO;
options symbolgen;
data _null_;
infile remotepw obs=1 length=l;
input @;
input @1 line $varying1024. l;
call symput('dbpass',substr(line,1,l));
run;
options nosymbolgen;
%END;%ELSE %LET dbpass=_PROMPT_;
%LET WRDS=wrds-cloud.wharton.upenn.edu 4016;
/*%LET &dbpass=%STR({sasenc}HARDCODEPASSWORDHEREIFITSUITSYOU);*/
OPTIONS comamid=TCP remote=WRDS;
SIGNON USERNAME="gaulinmp" PASSWORD="&dbpass";
%END;
%ELSE SIGNOFF;
%MEND WRDS;
%PUT %NRSTR(%%)COMPWHERE(libname);
%MACRO COMPWHERE(libname);
/* EXAMPLE:
PROC SQL;
CREATE TABLE tmp AS
SELECT gvkey, datadate
FROM comp.funda
WHERE %COMPWHERE()
AND gvkey EQ '001004'
ORDER BY gvkey;
QUIT;
*/
%IF "&libname." ne "" %THEN %LET libname=&libname..;
%IF "" EQ "" %THEN %DO;
&libname.INDFMT = 'INDL'
AND &libname.DATAFMT = 'STD'
AND &libname.POPSRC = 'D'
AND &libname.CONSOL = 'C'
%END;
%MEND COMPWHERE;
%PUT %NRSTR(%%)CONCATABLES(train, caboose);
%MACRO CONCATABLES(train, caboose);
%IF NOT %SYSFUNC(EXIST(&train)) %THEN %DO;
DATA &train;
SET &caboose;
RUN;
%END;
%ELSE %DO;
DATA &train;
SET &train &caboose;
RUN;
%END;
%MEND CONCATABLES;
%PUT %NRSTR(%%)DROPTABLES(table_list) %NRSTR(*Separated by commas;);
%MACRO DROPTABLES/PARMBUFF;
/* Here syspbuff contains the comma separated list within parens, so just strip the parens */
%LET local_var_list = %SUBSTR (&syspbuff, 2, %EVAL(%LENGTH(&syspbuff)-2));
%PUT Syspbuff contains: &local_var_list;
PROC SQL;
DROP TABLE &local_var_list;
QUIT;
%MEND DROPTABLES;
%PUT %NRSTR(%%)PRINT_COLUMNS(table);
%MACRO PRINT_COLUMNS(tabnam);
PROC CONTENTS DATA=&tabnam OUT=tmp_meta_delete_this (KEEP=name);RUN;
PROC PRINT DATA=tmp_meta_delete_this;RUN;
%MEND PRINT_COLUMNS;
%PUT %NRSTR(%%)IS_UNIQUE(db_in, %NRSTR(%%)(val1,val2,...));
%MACRO IS_UNIQUE(db_in, table_list);
PROC SQL;
CREATE TABLE check_unique_tmp_table AS
SELECT *
FROM &db_in
GROUP BY &table_list
HAVING COUNT(*) > 1;
QUIT;
%MEND IS_UNIQUE;
%PUT %NRSTR(%%)DUP(var1, var2, ... , db_in=%NRSTR(&)syslast);
%MACRO DUP/parmbuff;
%LET _opnote = %SYSFUNC(GETOPTION(notes));
OPTION NONOTES;
%LET _dbin = &syslast.;
%LET _go_til = %EVAL(%LENGTH(%NRBQUOTE(&syspbuff))-2);
%LET _re=%SYSFUNC(PRXPARSE(',\s*db_in\s*=\s*([^) ]*)'));
%LET _db_loc = %SYSFUNC(PRXMATCH(&_re, &syspbuff));
%IF (&_db_loc > 0) %THEN %DO;
%LET _go_til = %EVAL(&_db_loc - 2);
%LET _dbin = %SYSFUNC(PRXPOSN(&_re, 1, %NRBQUOTE(&syspbuff)));
%END;
%SYSCALL PRXFREE(_re);
%LET _vars = %SYSFUNC(SUBSTR(&syspbuff, 2, &_go_til));
PROC SQL NOPRINT;
CREATE TABLE _dup_table AS
SELECT COUNT(*) AS num_duplicates, &_vars
FROM &_dbin
GROUP BY &_vars
HAVING COUNT(*) > 1
ORDER BY &_vars;
SELECT DISTINCT COUNT(*) INTO :_num_dups
FROM _dup_table;
QUIT;
PROC SQL;
OPTION &_opnote;
%PUT NOTE:;%PUT NOTE: Table &_dbin has %SYSFUNC(STRIP(&_num_dups)) duplicates by key: &_vars;%PUT NOTE:;
%MEND;
%PUT %NRSTR(%%)EXPORT(dbms=TAB,db_in=syslast,filename=);
%MACRO EXPORT(dbms=TAB,db_in=&syslast.,filename=);
PROC EXPORT DATA=&db_in
OUTFILE= &filename
DBMS=&dbms REPLACE;
RUN;
%MEND EXPORT;
%PUT %NRSTR(%%)EXPORT_STATA(db_in=,filename=);
%MACRO EXPORT_STATA(db_in=,filename=);
%EXPORT(dbms="STATA",db_in=&db_in,filename=&filename);
%MEND EXPORT_STATA;
%PUT %NRSTR(%%)HEAD(db_in=syslast, n=2);
%MACRO HEAD(db_in=&syslast, n=2);
TITLE "&db_in";
PROC PRINT DATA=&db_in(obs=&n);
RUN;
TITLE;
%MEND HEAD;
%PUT %NRSTR(%%)STATS(db_in=tmp,db_out=summary_stats,vars=ret, by=none);
%MACRO STATS(db_in=tmp,db_out=summary_stats,vars=ret, by=none);
%local count;
%LOCAL db_delim;
%let count=0;
%LET db_delim=xzxz;
DATA &db_delim.fromfile;SET &db_in;RUN;
%DO %WHILE(%QSCAN(&vars,&count+1,%STR( )) ne %STR());
%let var = %QSCAN(&vars,&count+1,%STR( ));
%PUT Starting to calculate stats for &var....;
%IF &by ne none %THEN %DO;
PROC SORT DATA=&db_delim.fromfile;
BY &by;
RUN;
%END;
PROC UNIVARIATE DATA=&db_delim.fromfile NOPRINT;
VAR &var;
OUTPUT OUT=&db_delim.univ MEAN=mean STD=standard_dev
T=tstat PROBT=pstat MIN=min P1=pct1 Q1=pct25
MEDIAN=median Q3=pct75 P99=pct99 MAX=max N=nobs;
%IF &by ne none %THEN %DO;
BY &by;
%END;
RUN;
%PUT Creating &db_delim.var to add varname in the right order.;
DATA &db_delim.var;
LENGTH varname $ 12;
VARNAME = "&var";
SET &db_delim.univ;
RUN;
%IF NOT %SYSFUNC(EXIST(&db_out)) %THEN %DO;
%PUT Did not find &db_out so creating it now...;
DATA &db_out;
SET &db_delim.var;
RUN;
%END;%ELSE %DO;
%PUT Found &db_out so merging &db_delim.var with it;
DATA &db_out;
MERGE &db_out &db_delim.var;
BY varname;
RUN;
%END;
%PUT Done with &var, deleting &db_delim.var and &db_delim.univ;
PROC SQL;
DROP TABLE &db_delim.univ, &db_delim.var;
QUIT;
%LET count = %EVAL(&count+1);
%END;
PROC SQL;
DROP TABLE &db_delim.fromfile;
QUIT;
%MEND STATS;
%PUT %NRSTR(%%)REMOVE_LABELS(library.database);
%MACRO REMOVE_LABELS(string);
%LET src = %SYSFUNC(GETOPTION(source));
%LET nt = %SYSFUNC(GETOPTION(notes));
OPTIONS nonotes nosource;
%IF %SCAN(&string,2,%str(.)) = %THEN %DO;
%LET lib_str = user;
%LET db_str = %scan(&string,1,%str(.));
%PUT No library entered, defaulting to &lib_str;
%END;
%ELSE %DO;
%LET lib_str = %scan(&string,1,%str(.));
%LET db_str = %scan(&string,2,%str(.));
%END;
%IF %SYSFUNC(EXIST(&lib_str..&db_str)) %THEN %DO;
PROC DATASETS LIB=&lib_str MEMTYPE=data NODETAILS NOLIST;
MODIFY &db_str;
ATTRIB _ALL_ LABEL='';
RUN;QUIT;
%PUT Modified &lib_str..&db_str;
%END;
%ELSE %DO;
%PUT Library or database do not exist.;
%END;
OPTIONS &src &nt;
%MEND REMOVE_LABELS;
/*******************************************************************
*
* Trim or winsorize macro from wrds.us, somewhat modified.
* Note: If the percentile restriction cutoff is the two extreme
* observations then this winsorization technique sets
* the two extremes equal to the second and N-1 values.
* In other words, the winsorization changes AT LEAST two
* variables, even for small datasets. Samples of <5 have not
* been tested. Use at your own risk. As always, look at your data.
*
* db_in = dataset to winsorize/trim
* db_out = dataset to output with winsorized/trimmed values
* vars = list of variables to winsorize (in place, no commas)
* type = delete/winsor (delete will trim, winsor will winsorize
* byvar = subsetting variables to winsorize/trim on
* pctl_low/high = percentile (in percent) to winsorize to
* debug = set to true (no quotes) to keep intermediate files and vars
*
********************************************************************/
%PUT %NRSTR(%%)winsor(db_in=,db_out=,vars=, byvar=none, type=winsor, pctl_low=1, pctl_high=99, debug=false);
%MACRO winsor(db_in=,db_out=,vars=, byvar=none, type=winsor, pctl_low=1, pctl_high=99, debug=false);
%if &db_out = %then %let db_out = &db_in;
%let varL=;
%let varH=;
%let xn=1;
%do %until ( %scan(&vars,&xn)= );
%let token = %scan(&vars,&xn);
%let varL = &varL &token.L;
%let varH = &varH &token.H;
%let xn=%EVAL(&xn + 1);
%end;
%let xn=%eval(&xn-1);
/* If there is no BY variable, then make it 1. */
%IF &byvar = none %THEN %DO;
%LET byvar = 1;
%END;
data xtemp;
set &db_in;
tmp_byvar = &byvar;
RUN;
PROC SQL;
CREATE TABLE xtemp_pctl AS
SELECT DISTINCT tmp_byvar
FROM xtemp
ORDER BY tmp_byvar;
QUIT;
PROC SORT DATA=xtemp;
BY tmp_byvar;
RUN;
%local count;
%let count=0;
%DO %WHILE(%QSCAN(&vars,&count+1,%STR( )) ne %STR());
%LET vari = %QSCAN(&vars,&count+1,%STR( ));
%LET variL = %SYSFUNC(catx(,&vari,L));
%LET variH = %SYSFUNC(catx(,&vari,H));
%PUT &variL &variH;
PROC SORT DATA=xtemp;
BY tmp_byvar &vari;
RUN;QUIT;
PROC SQL;
CREATE TABLE xtemp2 AS
SELECT *
,COUNT(*) AS x_num_x
,CEIL(COUNT(*) * &pctl_low / 100) AS x_num_low_x
,FLOOR(COUNT(*) * &pctl_high / 100) AS x_num_high_x
FROM (SELECT * FROM xtemp WHERE &vari NE .)
GROUP BY tmp_byvar
ORDER BY tmp_byvar, &vari;
QUIT;
DATA xtemp3;
SET xtemp2;
BY tmp_byvar;
RETAIN x_groupstart_x;
IF FIRST.tmp_byvar THEN x_groupstart_x = _N_ - 1;
x_byvarrank_x = _N_ - x_groupstart_x;
*DROP x_groupstart_x;
RUN;
PROC SQL;
CREATE TABLE xtemp4 AS
SELECT DISTINCT tmp_byvar, &vari
,x_groupstart_x, x_num_x, x_byvarrank_x, x_num_low_x, x_num_high_x
FROM xtemp3
WHERE x_num_low_x + 1 = x_byvarrank_x;
CREATE TABLE xtemp5 AS
SELECT DISTINCT tmp_byvar, &vari
,x_groupstart_x, x_num_x, x_byvarrank_x, x_num_low_x, x_num_high_x
FROM xtemp3
WHERE x_num_high_x = x_byvarrank_x;
CREATE TABLE xtemp_pctl2 AS
SELECT DISTINCT a.*
,b.&vari AS &variL
,c.&vari AS &variH
FROM xtemp_pctl AS a
LEFT JOIN xtemp4 AS b
ON a.tmp_byvar = b.tmp_byvar
LEFT JOIN xtemp5 AS c
ON a.tmp_byvar = c.tmp_byvar;
QUIT;
DATA xtemp_pctl;
SET xtemp_pctl2;
RUN;
%LET count = %EVAL(&count+1);
%END;
PROC SORT DATA=xtemp;
BY tmp_byvar;
RUN;
data &db_out;
merge xtemp xtemp_pctl;
by tmp_byvar;
array trimvars{&xn} &vars;
array trimvarl{&xn} &varL;
array trimvarh{&xn} &varH;
do xi = 1 to dim(trimvars);
%if &type = winsor %then %do;
if not missing(trimvars{xi}) then do;
if (trimvars{xi} < trimvarl{xi}) then trimvars{xi} = trimvarl{xi};
if (trimvars{xi} > trimvarh{xi}) then trimvars{xi} = trimvarh{xi};
end;
%end;
%else %do;
if not missing(trimvars{xi}) then do;
if (trimvars{xi} < trimvarl{xi}) then delete;
if (trimvars{xi} > trimvarh{xi}) then delete;
end;
%end;
end;
%IF &debug NE true %THEN %DO;
DROP &varL &varH xi tmp_byvar;
%END;
run;
%IF &debug NE true %THEN %DO;
%PUT Dropping temp files.;
PROC SQL;
DROP TABLE xtemp, xtemp2, xtemp3, xtemp4, xtemp5, xtemp_pctl, xtemp_pctl2;
QUIT;
%END;
%PUT "End winsor function: &vars.";
%MEND winsor;
%PUT %NRSTR(%%)YFE(var, from, to);
%MACRO YFE(var, from, to);
%DO i=&from %TO &to;
,CASE
WHEN &var = &i THEN 1
ELSE 0
END AS yr&i
%END;
%MEND YFE;
/*****************************************************************************
* Generates Fama-French industry codes based on four-digit SIC codes.
* Outputs the original dataset with appended industry code information:
*
* db_in input dataset name
* sic four-digit sic code variable name
* db_out output dataset
* dummy_prefix prefix for industry binary variables (default: ffind)
* ind_var name of industry codes (1-48) variable (default: ffindn)
******************************************************************************/
%let _industry_fe= i1 i2 i3 i4 i5 i6 i7 i8 i9
i10 i11 i12 i13 i14 i15 i16 i17 i18 i19
i20 i21 i22 i23 i24 i25 i26 i27 i28 i29
i30 i31 i32 i33 i34 i35 i36 i37 i38 i39
i40 i41 i42 i43 i44 i45 i46 i47 i48;
%PUT %NRSTR(%%)ind_ff48 (db_in, db_out, sic, dummy_prefix=ffind, ind_var=ffindn );
%macro ind_ff48 (db_in, db_out, sic, dummy_prefix=ffind, ind_var=ffindn );
data &db_out;
set &db_in;
indus2=int(&sic/100);
indus3=int(&sic/10);
* 1 Agric Agriculture;
if &sic ge 0100 and &sic le 0199 then FF_IND='AGRIC';
if &sic ge 0200 and &sic le 0299 then FF_IND='AGRIC';
if &sic ge 0700 and &sic le 0799 then FF_IND='AGRIC';
if &sic ge 0910 and &sic le 0919 then FF_IND='AGRIC';
if &sic ge 2048 and &sic le 2048 then FF_IND='AGRIC';
if FF_IND='AGRIC' then &ind_var=1;
* 2 Food Food Products;
if &sic ge 2000 and &sic le 2009 then FF_IND='FOOD';
if &sic ge 2010 and &sic le 2019 then FF_IND='FOOD';
if &sic ge 2020 and &sic le 2029 then FF_IND='FOOD';
if &sic ge 2030 and &sic le 2039 then FF_IND='FOOD';
if &sic ge 2040 and &sic le 2046 then FF_IND='FOOD';
if &sic ge 2050 and &sic le 2059 then FF_IND='FOOD';
if &sic ge 2060 and &sic le 2063 then FF_IND='FOOD';
if &sic ge 2070 and &sic le 2079 then FF_IND='FOOD';
if &sic ge 2090 and &sic le 2092 then FF_IND='FOOD';
if &sic ge 2095 and &sic le 2095 then FF_IND='FOOD';
if &sic ge 2098 and &sic le 2099 then FF_IND='FOOD';
if FF_IND='FOOD' then &ind_var=2;
* 3 Soda Candy & Soda;
if &sic ge 2064 and &sic le 2068 then FF_IND='SODA';
if &sic ge 2086 and &sic le 2086 then FF_IND='SODA';
if &sic ge 2087 and &sic le 2087 then FF_IND='SODA';
if &sic ge 2096 and &sic le 2096 then FF_IND='SODA';
if &sic ge 2097 and &sic le 2097 then FF_IND='SODA';
if FF_IND='SODA' then &ind_var=3;
* 4 Beer Beer & Liquor;
if &sic ge 2080 and &sic le 2080 then FF_IND='BEER';
if &sic ge 2082 and &sic le 2082 then FF_IND='BEER';
if &sic ge 2083 and &sic le 2083 then FF_IND='BEER';
if &sic ge 2084 and &sic le 2084 then FF_IND='BEER';
if &sic ge 2085 and &sic le 2085 then FF_IND='BEER';
if FF_IND='BEER' then &ind_var=4;
* 5 Smoke Tobacco Products;
if &sic ge 2100 and &sic le 2199 then FF_IND='SMOKE';
if FF_IND='SMOKE' then &ind_var=5;
* 6 Toys Recreation;
if &sic ge 0920 and &sic le 0999 then FF_IND='TOYS';
if &sic ge 3650 and &sic le 3651 then FF_IND='TOYS';
if &sic ge 3652 and &sic le 3652 then FF_IND='TOYS';
if &sic ge 3732 and &sic le 3732 then FF_IND='TOYS';
if &sic ge 3930 and &sic le 3931 then FF_IND='TOYS';
if &sic ge 3940 and &sic le 3949 then FF_IND='TOYS';
if FF_IND='TOYS' then &ind_var=6;
* 7 Fun Entertainment;
if &sic ge 7800 and &sic le 7829 then FF_IND='FUN';
if &sic ge 7830 and &sic le 7833 then FF_IND='FUN';
if &sic ge 7840 and &sic le 7841 then FF_IND='FUN';
if &sic ge 7900 and &sic le 7900 then FF_IND='FUN';
if &sic ge 7910 and &sic le 7911 then FF_IND='FUN';
if &sic ge 7920 and &sic le 7929 then FF_IND='FUN';
if &sic ge 7930 and &sic le 7933 then FF_IND='FUN';
if &sic ge 7940 and &sic le 7949 then FF_IND='FUN';
if &sic ge 7980 and &sic le 7980 then FF_IND='FUN';
if &sic ge 7990 and &sic le 7999 then FF_IND='FUN';
if FF_IND='FUN' then &ind_var=7;
* 8 Books Printing and Publishing;
if &sic ge 2700 and &sic le 2709 then FF_IND='BOOKS';
if &sic ge 2710 and &sic le 2719 then FF_IND='BOOKS';
if &sic ge 2720 and &sic le 2729 then FF_IND='BOOKS';
if &sic ge 2730 and &sic le 2739 then FF_IND='BOOKS';
if &sic ge 2740 and &sic le 2749 then FF_IND='BOOKS';
if &sic ge 2770 and &sic le 2771 then FF_IND='BOOKS';
if &sic ge 2780 and &sic le 2789 then FF_IND='BOOKS';
if &sic ge 2790 and &sic le 2799 then FF_IND='BOOKS';
if FF_IND='BOOKS' then &ind_var=8;
* 9 Hshld Consumer Goods;
if &sic ge 2047 and &sic le 2047 then FF_IND='HSHLD';
if &sic ge 2391 and &sic le 2392 then FF_IND='HSHLD';
if &sic ge 2510 and &sic le 2519 then FF_IND='HSHLD';
if &sic ge 2590 and &sic le 2599 then FF_IND='HSHLD';
if &sic ge 2840 and &sic le 2843 then FF_IND='HSHLD';
if &sic ge 2844 and &sic le 2844 then FF_IND='HSHLD';
if &sic ge 3160 and &sic le 3161 then FF_IND='HSHLD';
if &sic ge 3170 and &sic le 3171 then FF_IND='HSHLD';
if &sic ge 3172 and &sic le 3172 then FF_IND='HSHLD';
if &sic ge 3190 and &sic le 3199 then FF_IND='HSHLD';
if &sic ge 3229 and &sic le 3229 then FF_IND='HSHLD';
if &sic ge 3260 and &sic le 3260 then FF_IND='HSHLD';
if &sic ge 3262 and &sic le 3263 then FF_IND='HSHLD';
if &sic ge 3269 and &sic le 3269 then FF_IND='HSHLD';
if &sic ge 3230 and &sic le 3231 then FF_IND='HSHLD';
if &sic ge 3630 and &sic le 3639 then FF_IND='HSHLD';
if &sic ge 3750 and &sic le 3751 then FF_IND='HSHLD';
if &sic ge 3800 and &sic le 3800 then FF_IND='HSHLD';
if &sic ge 3860 and &sic le 3861 then FF_IND='HSHLD';
if &sic ge 3870 and &sic le 3873 then FF_IND='HSHLD';
if &sic ge 3910 and &sic le 3911 then FF_IND='HSHLD';
if &sic ge 3914 and &sic le 3914 then FF_IND='HSHLD';
if &sic ge 3915 and &sic le 3915 then FF_IND='HSHLD';
if &sic ge 3960 and &sic le 3962 then FF_IND='HSHLD';
if &sic ge 3991 and &sic le 3991 then FF_IND='HSHLD';
if &sic ge 3995 and &sic le 3995 then FF_IND='HSHLD';
if FF_IND='HSHLD' then &ind_var=9;
*10 Clths Apparel;
if &sic ge 2300 and &sic le 2390 then FF_IND='CLTHS';
if &sic ge 3020 and &sic le 3021 then FF_IND='CLTHS';
if &sic ge 3100 and &sic le 3111 then FF_IND='CLTHS';
if &sic ge 3130 and &sic le 3131 then FF_IND='CLTHS';
if &sic ge 3140 and &sic le 3149 then FF_IND='CLTHS';
if &sic ge 3150 and &sic le 3151 then FF_IND='CLTHS';
if &sic ge 3963 and &sic le 3965 then FF_IND='CLTHS';
if FF_IND='CLTHS' then &ind_var=10;
*11 Hlth Healthcare;
if &sic ge 8000 and &sic le 8099 then FF_IND='HLTH';
if FF_IND='HLTH' then &ind_var=11;
*12 MedEq Medical Equipment;
if &sic ge 3693 and &sic le 3693 then FF_IND='MEDEQ';
if &sic ge 3840 and &sic le 3849 then FF_IND='MEDEQ';
if &sic ge 3850 and &sic le 3851 then FF_IND='MEDEQ';
if FF_IND='MEDEQ' then &ind_var=12;
*13 Drugs Pharmaceutical Products;
if &sic ge 2830 and &sic le 2830 then FF_IND='DRUGS';
if &sic ge 2831 and &sic le 2831 then FF_IND='DRUGS';
if &sic ge 2833 and &sic le 2833 then FF_IND='DRUGS';
if &sic ge 2834 and &sic le 2834 then FF_IND='DRUGS';
if &sic ge 2835 and &sic le 2835 then FF_IND='DRUGS';
if &sic ge 2836 and &sic le 2836 then FF_IND='DRUGS';
if FF_IND='DRUGS' then &ind_var=13;
*14 Chems Chemicals;
if &sic ge 2800 and &sic le 2809 then FF_IND='CHEM';
if &sic ge 2810 and &sic le 2819 then FF_IND='CHEM';
if &sic ge 2820 and &sic le 2829 then FF_IND='CHEM';
if &sic ge 2850 and &sic le 2859 then FF_IND='CHEM';
if &sic ge 2860 and &sic le 2869 then FF_IND='CHEM';
if &sic ge 2870 and &sic le 2879 then FF_IND='CHEM';
if &sic ge 2890 and &sic le 2899 then FF_IND='CHEM';
if FF_IND='CHEM' then &ind_var=14;
*15 Rubbr Rubber and Plastic Products;
if &sic ge 3031 and &sic le 3031 then FF_IND='RUBBR';
if &sic ge 3041 and &sic le 3041 then FF_IND='RUBBR';
if &sic ge 3050 and &sic le 3053 then FF_IND='RUBBR';
if &sic ge 3060 and &sic le 3069 then FF_IND='RUBBR';
if &sic ge 3070 and &sic le 3079 then FF_IND='RUBBR';
if &sic ge 3080 and &sic le 3089 then FF_IND='RUBBR';
if &sic ge 3090 and &sic le 3099 then FF_IND='RUBBR';
if FF_IND='RUBBR' then &ind_var=15;
*16 Txtls Textiles;
if &sic ge 2200 and &sic le 2269 then FF_IND='TXTLS';
if &sic ge 2270 and &sic le 2279 then FF_IND='TXTLS';
if &sic ge 2280 and &sic le 2284 then FF_IND='TXTLS';
if &sic ge 2290 and &sic le 2295 then FF_IND='TXTLS';
if &sic ge 2297 and &sic le 2297 then FF_IND='TXTLS';
if &sic ge 2298 and &sic le 2298 then FF_IND='TXTLS';
if &sic ge 2299 and &sic le 2299 then FF_IND='TXTLS';
if &sic ge 2393 and &sic le 2395 then FF_IND='TXTLS';
if &sic ge 2397 and &sic le 2399 then FF_IND='TXTLS';
if FF_IND='TXTLS' then &ind_var=16;
*17 BldMt Construction Materials;
if &sic ge 0800 and &sic le 0899 then FF_IND='BLDMT';
if &sic ge 2400 and &sic le 2439 then FF_IND='BLDMT';
if &sic ge 2450 and &sic le 2459 then FF_IND='BLDMT';
if &sic ge 2490 and &sic le 2499 then FF_IND='BLDMT';
if &sic ge 2660 and &sic le 2661 then FF_IND='BLDMT';
if &sic ge 2950 and &sic le 2952 then FF_IND='BLDMT';
if &sic ge 3200 and &sic le 3200 then FF_IND='BLDMT';
if &sic ge 3210 and &sic le 3211 then FF_IND='BLDMT';
if &sic ge 3240 and &sic le 3241 then FF_IND='BLDMT';
if &sic ge 3250 and &sic le 3259 then FF_IND='BLDMT';
if &sic ge 3261 and &sic le 3261 then FF_IND='BLDMT';
if &sic ge 3264 and &sic le 3264 then FF_IND='BLDMT';
if &sic ge 3270 and &sic le 3275 then FF_IND='BLDMT';
if &sic ge 3280 and &sic le 3281 then FF_IND='BLDMT';
if &sic ge 3290 and &sic le 3293 then FF_IND='BLDMT';
if &sic ge 3295 and &sic le 3299 then FF_IND='BLDMT';
if &sic ge 3420 and &sic le 3429 then FF_IND='BLDMT';
if &sic ge 3430 and &sic le 3433 then FF_IND='BLDMT';
if &sic ge 3440 and &sic le 3441 then FF_IND='BLDMT';
if &sic ge 3442 and &sic le 3442 then FF_IND='BLDMT';
if &sic ge 3446 and &sic le 3446 then FF_IND='BLDMT';
if &sic ge 3448 and &sic le 3448 then FF_IND='BLDMT';
if &sic ge 3449 and &sic le 3449 then FF_IND='BLDMT';
if &sic ge 3450 and &sic le 3451 then FF_IND='BLDMT';
if &sic ge 3452 and &sic le 3452 then FF_IND='BLDMT';
if &sic ge 3490 and &sic le 3499 then FF_IND='BLDMT';
if &sic ge 3996 and &sic le 3996 then FF_IND='BLDMT';
if FF_IND='BLDMT' then &ind_var=17;
*18 Cnstr Construction;
if &sic ge 1500 and &sic le 1511 then FF_IND='CNSTR';
if &sic ge 1520 and &sic le 1529 then FF_IND='CNSTR';
if &sic ge 1530 and &sic le 1539 then FF_IND='CNSTR';
if &sic ge 1540 and &sic le 1549 then FF_IND='CNSTR';
if &sic ge 1600 and &sic le 1699 then FF_IND='CNSTR';
if &sic ge 1700 and &sic le 1799 then FF_IND='CNSTR';
if FF_IND='CNSTR' then &ind_var=18;
*19 Steel Steel Works Etc;
if &sic ge 3300 and &sic le 3300 then FF_IND='STEEL';
if &sic ge 3310 and &sic le 3317 then FF_IND='STEEL';
if &sic ge 3320 and &sic le 3325 then FF_IND='STEEL';
if &sic ge 3330 and &sic le 3339 then FF_IND='STEEL';
if &sic ge 3340 and &sic le 3341 then FF_IND='STEEL';
if &sic ge 3350 and &sic le 3357 then FF_IND='STEEL';
if &sic ge 3360 and &sic le 3369 then FF_IND='STEEL';
if &sic ge 3370 and &sic le 3379 then FF_IND='STEEL';
if &sic ge 3390 and &sic le 3399 then FF_IND='STEEL';
if FF_IND='STEEL' then &ind_var=19;
*20 FabPr Fabricated Products;
if &sic ge 3400 and &sic le 3400 then FF_IND='FABPR';
if &sic ge 3443 and &sic le 3443 then FF_IND='FABPR';
if &sic ge 3444 and &sic le 3444 then FF_IND='FABPR';
if &sic ge 3460 and &sic le 3469 then FF_IND='FABPR';
if &sic ge 3470 and &sic le 3479 then FF_IND='FABPR';
if FF_IND='FABPR' then &ind_var=20;
*21 Mach Machinery;
if &sic ge 3510 and &sic le 3519 then FF_IND='MACH';
if &sic ge 3520 and &sic le 3529 then FF_IND='MACH';
if &sic ge 3530 and &sic le 3530 then FF_IND='MACH';
if &sic ge 3531 and &sic le 3531 then FF_IND='MACH';
if &sic ge 3532 and &sic le 3532 then FF_IND='MACH';
if &sic ge 3533 and &sic le 3533 then FF_IND='MACH';
if &sic ge 3534 and &sic le 3534 then FF_IND='MACH';
if &sic ge 3535 and &sic le 3535 then FF_IND='MACH';
if &sic ge 3536 and &sic le 3536 then FF_IND='MACH';
if &sic ge 3538 and &sic le 3538 then FF_IND='MACH';
if &sic ge 3540 and &sic le 3549 then FF_IND='MACH';
if &sic ge 3550 and &sic le 3559 then FF_IND='MACH';
if &sic ge 3560 and &sic le 3569 then FF_IND='MACH';
if &sic ge 3580 and &sic le 3580 then FF_IND='MACH';
if &sic ge 3581 and &sic le 3581 then FF_IND='MACH';
if &sic ge 3582 and &sic le 3582 then FF_IND='MACH';
if &sic ge 3585 and &sic le 3585 then FF_IND='MACH';
if &sic ge 3586 and &sic le 3586 then FF_IND='MACH';
if &sic ge 3589 and &sic le 3589 then FF_IND='MACH';
if &sic ge 3590 and &sic le 3599 then FF_IND='MACH';
if FF_IND='MACH' then &ind_var=21;
*22 ElcEq Electrical Equipment;
if &sic ge 3600 and &sic le 3600 then FF_IND='ELCEQ';
if &sic ge 3610 and &sic le 3613 then FF_IND='ELCEQ';
if &sic ge 3620 and &sic le 3621 then FF_IND='ELCEQ';
if &sic ge 3623 and &sic le 3629 then FF_IND='ELCEQ';
if &sic ge 3640 and &sic le 3644 then FF_IND='ELCEQ';
if &sic ge 3645 and &sic le 3645 then FF_IND='ELCEQ';
if &sic ge 3646 and &sic le 3646 then FF_IND='ELCEQ';
if &sic ge 3648 and &sic le 3649 then FF_IND='ELCEQ';
if &sic ge 3660 and &sic le 3660 then FF_IND='ELCEQ';
if &sic ge 3690 and &sic le 3690 then FF_IND='ELCEQ';
if &sic ge 3691 and &sic le 3692 then FF_IND='ELCEQ';
if &sic ge 3699 and &sic le 3699 then FF_IND='ELCEQ';
if FF_IND='ELCEQ' then &ind_var=22;
*23 Autos Automobiles and Trucks;
if &sic ge 2296 and &sic le 2296 then FF_IND='AUTOS';
if &sic ge 2396 and &sic le 2396 then FF_IND='AUTOS';
if &sic ge 3010 and &sic le 3011 then FF_IND='AUTOS';
if &sic ge 3537 and &sic le 3537 then FF_IND='AUTOS';
if &sic ge 3647 and &sic le 3647 then FF_IND='AUTOS';
if &sic ge 3694 and &sic le 3694 then FF_IND='AUTOS';
if &sic ge 3700 and &sic le 3700 then FF_IND='AUTOS';
if &sic ge 3710 and &sic le 3710 then FF_IND='AUTOS';
if &sic ge 3711 and &sic le 3711 then FF_IND='AUTOS';
if &sic ge 3713 and &sic le 3713 then FF_IND='AUTOS';
if &sic ge 3714 and &sic le 3714 then FF_IND='AUTOS';
if &sic ge 3715 and &sic le 3715 then FF_IND='AUTOS';
if &sic ge 3716 and &sic le 3716 then FF_IND='AUTOS';
if &sic ge 3792 and &sic le 3792 then FF_IND='AUTOS';
if &sic ge 3790 and &sic le 3791 then FF_IND='AUTOS';
if &sic ge 3799 and &sic le 3799 then FF_IND='AUTOS';
if FF_IND='AUTOS' then &ind_var=23;
*24 Aero Aircraft;
if &sic ge 3720 and &sic le 3720 then FF_IND='AERO';
if &sic ge 3721 and &sic le 3721 then FF_IND='AERO';
if &sic ge 3723 and &sic le 3724 then FF_IND='AERO';
if &sic ge 3725 and &sic le 3725 then FF_IND='AERO';
if &sic ge 3728 and &sic le 3729 then FF_IND='AERO';
if FF_IND='AERO' then &ind_var=24;
*25 Ships Shipbuilding, Railroad Equipment;
if &sic ge 3730 and &sic le 3731 then FF_IND='SHIPS';
if &sic ge 3740 and &sic le 3743 then FF_IND='SHIPS';
if FF_IND='SHIPS' then &ind_var=25;
*26 Guns Defense;
if &sic ge 3760 and &sic le 3769 then FF_IND='GUNS';
if &sic ge 3795 and &sic le 3795 then FF_IND='GUNS';
if &sic ge 3480 and &sic le 3489 then FF_IND='GUNS';
if FF_IND='GUNS' then &ind_var=26;
*27 Gold Precious Metals;
if &sic ge 1040 and &sic le 1049 then FF_IND='GOLD';
if FF_IND='GOLD' then &ind_var=27;
*28 Mines Non and &sic le Metallic and Industrial Metal Mining;;
if &sic ge 1000 and &sic le 1009 then FF_IND='MINES';
if &sic ge 1010 and &sic le 1019 then FF_IND='MINES';
if &sic ge 1020 and &sic le 1029 then FF_IND='MINES';
if &sic ge 1030 and &sic le 1039 then FF_IND='MINES';
if &sic ge 1050 and &sic le 1059 then FF_IND='MINES';
if &sic ge 1060 and &sic le 1069 then FF_IND='MINES';
if &sic ge 1070 and &sic le 1079 then FF_IND='MINES';
if &sic ge 1080 and &sic le 1089 then FF_IND='MINES';
if &sic ge 1090 and &sic le 1099 then FF_IND='MINES';
if &sic ge 1100 and &sic le 1119 then FF_IND='MINES';
if &sic ge 1400 and &sic le 1499 then FF_IND='MINES';
if FF_IND='MINES' then &ind_var=28;
*29 Coal Coal;
if &sic ge 1200 and &sic le 1299 then FF_IND='COAL';
if FF_IND='COAL' then &ind_var=29;
*30 Oil Petroleum and Natural Gas;
if &sic ge 1300 and &sic le 1300 then FF_IND='OIL';
if &sic ge 1310 and &sic le 1319 then FF_IND='OIL';
if &sic ge 1320 and &sic le 1329 then FF_IND='OIL';
if &sic ge 1330 and &sic le 1339 then FF_IND='OIL';
if &sic ge 1370 and &sic le 1379 then FF_IND='OIL';
if &sic ge 1380 and &sic le 1380 then FF_IND='OIL';
if &sic ge 1381 and &sic le 1381 then FF_IND='OIL';
if &sic ge 1382 and &sic le 1382 then FF_IND='OIL';
if &sic ge 1389 and &sic le 1389 then FF_IND='OIL';
if &sic ge 2900 and &sic le 2912 then FF_IND='OIL';
if &sic ge 2990 and &sic le 2999 then FF_IND='OIL';
if FF_IND='OIL' then &ind_var=30;
*31 Util Utilities;
if &sic ge 4900 and &sic le 4900 then FF_IND='UTIL';
if &sic ge 4910 and &sic le 4911 then FF_IND='UTIL';
if &sic ge 4920 and &sic le 4922 then FF_IND='UTIL';
if &sic ge 4923 and &sic le 4923 then FF_IND='UTIL';
if &sic ge 4924 and &sic le 4925 then FF_IND='UTIL';
if &sic ge 4930 and &sic le 4931 then FF_IND='UTIL';
if &sic ge 4932 and &sic le 4932 then FF_IND='UTIL';
if &sic ge 4939 and &sic le 4939 then FF_IND='UTIL';
if &sic ge 4940 and &sic le 4942 then FF_IND='UTIL';
if FF_IND='UTIL' then &ind_var=31;
*32 Telcm Communication;
if &sic ge 4800 and &sic le 4800 then FF_IND='TELCM';
if &sic ge 4810 and &sic le 4813 then FF_IND='TELCM';
if &sic ge 4820 and &sic le 4822 then FF_IND='TELCM';
if &sic ge 4830 and &sic le 4839 then FF_IND='TELCM';
if &sic ge 4840 and &sic le 4841 then FF_IND='TELCM';
if &sic ge 4880 and &sic le 4889 then FF_IND='TELCM';
if &sic ge 4890 and &sic le 4890 then FF_IND='TELCM';
if &sic ge 4891 and &sic le 4891 then FF_IND='TELCM';
if &sic ge 4892 and &sic le 4892 then FF_IND='TELCM';
if &sic ge 4899 and &sic le 4899 then FF_IND='TELCM';
if FF_IND='TELCM' then &ind_var=32;
*33 PerSv Personal Services;
if &sic ge 7020 and &sic le 7021 then FF_IND='PERSV';
if &sic ge 7030 and &sic le 7033 then FF_IND='PERSV';
if &sic ge 7200 and &sic le 7200 then FF_IND='PERSV';
if &sic ge 7210 and &sic le 7212 then FF_IND='PERSV';
if &sic ge 7214 and &sic le 7214 then FF_IND='PERSV';
if &sic ge 7215 and &sic le 7216 then FF_IND='PERSV';
if &sic ge 7217 and &sic le 7217 then FF_IND='PERSV';
if &sic ge 7219 and &sic le 7219 then FF_IND='PERSV';
if &sic ge 7220 and &sic le 7221 then FF_IND='PERSV';
if &sic ge 7230 and &sic le 7231 then FF_IND='PERSV';
if &sic ge 7240 and &sic le 7241 then FF_IND='PERSV';
if &sic ge 7250 and &sic le 7251 then FF_IND='PERSV';
if &sic ge 7260 and &sic le 7269 then FF_IND='PERSV';
if &sic ge 7270 and &sic le 7290 then FF_IND='PERSV';
if &sic ge 7291 and &sic le 7291 then FF_IND='PERSV';
if &sic ge 7292 and &sic le 7299 then FF_IND='PERSV';
if &sic ge 7395 and &sic le 7395 then FF_IND='PERSV';
if &sic ge 7500 and &sic le 7500 then FF_IND='PERSV';
if &sic ge 7520 and &sic le 7529 then FF_IND='PERSV';
if &sic ge 7530 and &sic le 7539 then FF_IND='PERSV';
if &sic ge 7540 and &sic le 7549 then FF_IND='PERSV';
if &sic ge 7600 and &sic le 7600 then FF_IND='PERSV';
if &sic ge 7620 and &sic le 7620 then FF_IND='PERSV';
if &sic ge 7622 and &sic le 7622 then FF_IND='PERSV';
if &sic ge 7623 and &sic le 7623 then FF_IND='PERSV';
if &sic ge 7629 and &sic le 7629 then FF_IND='PERSV';
if &sic ge 7630 and &sic le 7631 then FF_IND='PERSV';
if &sic ge 7640 and &sic le 7641 then FF_IND='PERSV';
if &sic ge 7690 and &sic le 7699 then FF_IND='PERSV';
if &sic ge 8100 and &sic le 8199 then FF_IND='PERSV';
if &sic ge 8200 and &sic le 8299 then FF_IND='PERSV';
if &sic ge 8300 and &sic le 8399 then FF_IND='PERSV';
if &sic ge 8400 and &sic le 8499 then FF_IND='PERSV';
if &sic ge 8600 and &sic le 8699 then FF_IND='PERSV';
if &sic ge 8800 and &sic le 8899 then FF_IND='PERSV';
if &sic ge 7510 and &sic le 7515 then FF_IND='PERSV';
if FF_IND='PERSV' then &ind_var=33;
*34 BusSv Business Services;
if &sic ge 2750 and &sic le 2759 then FF_IND='BUSSV';
if &sic ge 3993 and &sic le 3993 then FF_IND='BUSSV';
if &sic ge 7218 and &sic le 7218 then FF_IND='BUSSV';
if &sic ge 7300 and &sic le 7300 then FF_IND='BUSSV';
if &sic ge 7310 and &sic le 7319 then FF_IND='BUSSV';
if &sic ge 7320 and &sic le 7329 then FF_IND='BUSSV';
if &sic ge 7330 and &sic le 7339 then FF_IND='BUSSV';
if &sic ge 7340 and &sic le 7342 then FF_IND='BUSSV';
if &sic ge 7349 and &sic le 7349 then FF_IND='BUSSV';
if &sic ge 7350 and &sic le 7351 then FF_IND='BUSSV';
if &sic ge 7352 and &sic le 7352 then FF_IND='BUSSV';
if &sic ge 7353 and &sic le 7353 then FF_IND='BUSSV';
if &sic ge 7359 and &sic le 7359 then FF_IND='BUSSV';
if &sic ge 7360 and &sic le 7369 then FF_IND='BUSSV';
if &sic ge 7370 and &sic le 7372 then FF_IND='BUSSV';
if &sic ge 7374 and &sic le 7374 then FF_IND='BUSSV';
if &sic ge 7375 and &sic le 7375 then FF_IND='BUSSV';
if &sic ge 7376 and &sic le 7376 then FF_IND='BUSSV';
if &sic ge 7377 and &sic le 7377 then FF_IND='BUSSV';
if &sic ge 7378 and &sic le 7378 then FF_IND='BUSSV';
if &sic ge 7379 and &sic le 7379 then FF_IND='BUSSV';
if &sic ge 7380 and &sic le 7380 then FF_IND='BUSSV';
if &sic ge 7381 and &sic le 7382 then FF_IND='BUSSV';
if &sic ge 7383 and &sic le 7383 then FF_IND='BUSSV';
if &sic ge 7384 and &sic le 7384 then FF_IND='BUSSV';
if &sic ge 7385 and &sic le 7385 then FF_IND='BUSSV';
if &sic ge 7389 and &sic le 7390 then FF_IND='BUSSV';
if &sic ge 7391 and &sic le 7391 then FF_IND='BUSSV';
if &sic ge 7392 and &sic le 7392 then FF_IND='BUSSV';
if &sic ge 7393 and &sic le 7393 then FF_IND='BUSSV';
if &sic ge 7394 and &sic le 7394 then FF_IND='BUSSV';
if &sic ge 7396 and &sic le 7396 then FF_IND='BUSSV';
if &sic ge 7397 and &sic le 7397 then FF_IND='BUSSV';
if &sic ge 7399 and &sic le 7399 then FF_IND='BUSSV';
if &sic ge 7519 and &sic le 7519 then FF_IND='BUSSV';
if &sic ge 8700 and &sic le 8700 then FF_IND='BUSSV';
if &sic ge 8710 and &sic le 8713 then FF_IND='BUSSV';
if &sic ge 8720 and &sic le 8721 then FF_IND='BUSSV';
if &sic ge 8730 and &sic le 8734 then FF_IND='BUSSV';
if &sic ge 8740 and &sic le 8748 then FF_IND='BUSSV';
if &sic ge 8900 and &sic le 8910 then FF_IND='BUSSV';
if &sic ge 8911 and &sic le 8911 then FF_IND='BUSSV';
if &sic ge 8920 and &sic le 8999 then FF_IND='BUSSV';
if &sic ge 4220 and &sic le 4229 then FF_IND='BUSSV';
if FF_IND='BUSSV' then &ind_var=34;