|
[text/html]
2893 %inc " R:\Shared\Cognos\\B1_rpt_ALL_2.SAS";
NOTE: %INCLUDE (level 1) file R:\Shared\Cognos\\B1_rpt_ALL_2.SAS is file
R:\Shared\Cognos\\B1_rpt_ALL_2.SAS.
2894 +****** B1_rpt_ALL_2 ;
2895 +libname Permlib 'R:\Shared\Cognos\\';
NOTE: Libref PERMLIB was successfully assigned as follows:
Engine: V8
Physical Name: R:\Shared\Cognos\
2896 +**This is used to format the report presentation;
2897 +options number nocenter pageno=1;
2898 +
2899 +*******;
2900 +/*proc printto print = 'out.txt' new;
2901 +run;
2902 +*/
2903 +***** input dataset output dataset
2904 + Consider missing values as valid values for group, order, or across
variables;
2905 +
2906 +options source2;
2907 +
2908 +PROC REPORT data = Permlib.sumhold2 out = Permlib.B1_ALL missing
2909 + headline headskip split='*' nowd;
2910 + Title "B1 report By Sales District and Group " ;
2911 + Title2 " 2 years analysis ";
2912 +Column
2913 + SalesDist
2914 + CstGrp
2915 + Ph1_G
2916 + Ph2
2917 + Ph3
2918 + MktGrp
2919 + MktFunc
2920 + PrType
2921 + model
2922 + ColorGr
2923 + /***columns for calculations *****/
2924 + tot_model
2925 + ACytd_qty
2926 + Cytd_Sales
2927 + Pytd_Sales
2928 + Pytd_AvgP
2929 + Cytd_AvgP
2930 + /****/
2931 + /***/
2932 + Finish1 /* 1 */
2933 + Py_qty /* 6 */
2934 + Pytd_qty /* 8 */
2935 + Cytd_qty /* 10 */
2936 + Chg_Cy_qty /* 9 */
2937 + Pytd_list
2938 + Pytd_list_ /* 11 */
2939 + Pytd_disc /* 12 */
2940 + Pytd_Avg_prc /* 13 */
2941 + Pytd_cost
2942 + Pytd_cost_ /* 14 */
2943 + Pytd_GM
2944 + Pytd_GM_ /* 15 */
2945 + Gross_Marg_Py /* 16 */
2946 + Cytd_list
2947 + Cytd_list_ /* 17 */
2948 + Chg_list_Py /* 18 */
2949 + Cytd_disc /* 19 */
2950 + Cytd_Avg_prc /* 20 */
2951 + Chg_Avg_prc_Py /* 21 */
2952 + Cytd_cost
2953 + Cytd_cost_ /* 22 */
2954 + Chg_cost_Py /* 23 */
2955 + Cytd_GM
2956 + Cytd_GM_ /* 24 */
2957 + Chg_GM_Py /* 25 */
2958 + Gross_Marg_Cy /* 26 */
2959 + Cytd_Sales
2960 + Pytd_Sales
2961 + Pytd_AvgP
2962 + Cytd_AvgP
2963 + ;
2964 +******* where CstGrp1 = 'Export';
2965 +****** define all the columns;
2966 +
2967 +Define SalesDist/ group width= 10;
2968 +Define CstGrp / group width= 10;
2969 +Define Ph1_G / group width= 10;
2970 +Define Ph2 / group width= 10;
2971 +Define Ph3 / group width= 10;
2972 +Define MktGrp / group width= 5;
2973 +Define MktFunc / group width= 5;
2974 +Define PrType / group width= 5;
2975 +Define Model / group width= 5;
2976 +Define ColorGr / group width= 5;
2977 +
2978 +**********Define model / group ' model ' width= 10;
2979 +**** Define columns for calculations *****;
2980 +
2981 +Define Cytd_Sales / noprint format=8. "YTD &Cy Sales";
WARNING: Apparent symbolic reference CY not resolved.
2982 +Define Pytd_Sales / noprint format=8. "YTD &Py Sales";
WARNING: Apparent symbolic reference PY not resolved.
2983 +Define Cytd_AvgP / noprint format=8. "YTD &Cy AvgP";
WARNING: Apparent symbolic reference CY not resolved.
2984 +Define Pytd_AvgP / noprint format=8. "YTD &Py AvgP";
WARNING: Apparent symbolic reference PY not resolved.
2985 +Define tot_model / noprint analysis format=8. "tot model";
2986 +Define ACytd_qty / noprint analysis format=8. ; /*10 alias */
2987 +Define Pytd_list / noprint format=7. ;
2988 +Define Pytd_cost / noprint format=7. ;
2989 +Define Pytd_GM / noprint format=7. ;
2990 +Define Cytd_list / noprint format=7. ;
2991 +Define Cytd_cost / noprint format=7. ;
2992 +Define Cytd_GM / noprint format=7. ;
2993 +
2994 +*****Define ACytd / Format = 8. analysis ; /*10 alias */
2995 +Define Cytd_qty / Format=7. analysis ; /* 10 */
2996 +*****************************************************;
2997 +**This is used to format the report according to what the user has
defined each column is
2997!+formated;
2998 +
2999 +Define Finish1 /computed format=5.1 ; /* 1 */
3000 + compute Finish1;
3001 + ** This is to check if the value of finish is blank or not ;
3002 + ** If tot_model.sum < 0 then =.;
3003 + if tot_model.sum > 0 then
3004 + Finish1=(ACytd_qty.sum /tot_model.sum)*100;
3005 + else
3006 + Finish1 = 1;
3007 + **if Finish1 < 0 then =.;
3008 + endcomp;
3009 +
3010 +Define Py_qty / format=7. ; /* 6 */
3011 +Define Pytd_qty / format=7. ; /* 8 */
3012 +Define Chg_Cy_qty /computed format=5.1 ; /* 9 */
3013 + compute Chg_Cy_qty;
3014 + ** if Pytd_qty.sum < 0 then =.;
3015 +
3016 + if Pytd_qty.sum > 0 then
3017 + Chg_Cy_qty=(Cytd_qty.sum - Pytd_qty.sum)*100/Pytd_qty.sum;
3018 +
3019 + else
3020 + Chg_Cy_qty = 1 ;
3021 + **this is used to handle the missing value;
3022 + **if Chg_Cy_qty < 0 then =.;
3023 + endcomp;
3024 +
3025 +Define Cytd_qty / format=7. ; /* 10 */
3026 +Define Pytd_list_ /computed format=7. ; /* 11 */
3027 + compute Pytd_list_;
3028 + **if Pytd_qty.sum < 0 then =.;
3029 + if Pytd_qty.sum > 0 then
3030 + Pytd_list_ = (Pytd_list.sum / Pytd_qty.sum);
3031 + else
3032 + Pytd_list_ = 1 ;
3033 +
3034 + **if Pytd_list_ < 0 then = .;
3035 + endcomp;
3036 +Define Pytd_Disc /computed format=5.1 ; /* 12 */
3037 + compute Pytd_Disc;
3038 + **if Pytd_list.sum < 0 then = .;
3039 + if Pytd_list.sum > 0 then
3040 + Pytd_Disc = (Pytd_sales.sum / Pytd_list.sum);
3041 + else
3042 + Pytd_Disc = 1 ;
3043 + **if Pytd_disc < 0 then = .;
3044 + endcomp;
3045 +Define Pytd_Avg_prc /computed format=5.1 ; /* 13 */
3046 +compute Pytd_Avg_prc;
3047 + **if Pytd_qty.sum < 0 then =.;
3048 +
3049 + if Pytd_qty.sum > 0 then
3050 + Pytd_Avg_prc = (Pytd_sales.sum / Pytd_qty.sum);
3051 + else
3052 + Pytd_Avg_prc = 1 ;
3053 +
3054 + **if Pytd_Avg_prc < 0 then =.;
3055 + endcomp;
3056 +
3057 +Define Pytd_cost_ /computed format=7. ; /* 14 */
3058 + compute Pytd_cost_;
3059 + **If Pytd_qty.sum < 0 then =.;
3060 +
3061 + If Pytd_qty.sum >0 then
3062 + Pytd_cost_ = (Pytd_cost.sum / Pytd_qty.sum);
3063 + else
3064 + Pytd_cost_ = 1;
3065 + **if Pytd_cost <0 then = .;
3066 + endcomp;
3067 +
3068 +Define Pytd_GM_ /computed format=7. ; /* 15 */
3069 + compute Pytd_GM_;
3070 + **If Pytd_qty.sum < 0 then =.;
3071 +
3072 + If Pytd_qty.sum > 0 then
3073 + Pytd_GM_ = (Pytd_GM.sum / Pytd_qty.sum);
3074 + else
3075 + Pytd_GM_ = 1;
3076 +
3077 + **if Pytd_Gm < 0 then =.;
3078 + endcomp;
3079 + * ;
3080 +Define Gross_Marg_Py /computed format=5.1 ; /* 16 */
3081 + compute Gross_Marg_Py;
3082 + **If Pytd_sales.sum < 0 then =.;
3083 + if Pytd_sales.sum > 0 then
3084 + Gross_Marg_Py= (Pytd_GM.sum / Pytd_sales.sum)*100;
3085 + else
3086 + Gross_Marg_Py = 1 ;
3087 + **if Gross_Marg_Py < 0 then =.;
3088 + endcomp;
3089 + Define Cytd_list / format=7. ; /* 17 */
3090 +
3091 +Define Cytd_list_ /computed format=7. ; /* 17 */
3092 + compute Cytd_list_;
3093 + **if Cytd_qty.sum < 0 then =.;
3094 + if Cytd_qty.sum > 0 then
3095 + Cytd_list_ = (Cytd_list.sum / Cytd_qty.sum);
3096 + else
3097 + Cytd_list_ = 1 ;
3098 + **if Cytd_list < 0 then = .;
3099 + endcomp;
3100 +
3101 +Define Chg_list_Py /computed format=5.1 ; /* 18 */
3102 + compute Chg_list_Py;
3103 + **if Pytd_list.sum <0 then =.;
3104 + if Pytd_list.sum > 0 then
3105 + Chg_list_Py=(Cytd_list.sum - Pytd_list.sum)*100/Pytd_list.sum;
3106 + else
3107 + Chg_list_Py = 1 ;
3108 +
3109 + **if Chg_list_Py < 0 then =.;
3110 + endcomp;
3111 +
3112 +Define Cytd_Disc /computed format=5.1 ; /* 19 */
3113 + compute Cytd_Disc;
3114 + **If Cytd_list.sum < 0 then =.;
3115 +
3116 + if Cytd_list.sum > 0 then
3117 + Cytd_Disc = (Cytd_sales.sum / Cytd_list.sum);
3118 + else
3119 + Cytd_Disc = 1 ;
3120 + **if Cytd_Disc <0 then = . ;
3121 + endcomp;
3122 +
3123 +Define Cytd_Avg_prc /computed format=5.1 ; /* 20 */
3124 + compute Cytd_Avg_prc;
3125 + **If Cytd_qty.sum < 0 then =.;
3126 +
3127 + If Cytd_qty.sum > 0 then
3128 + Cytd_Avg_prc = (Cytd_sales.sum / Cytd_qty.sum);
3129 + else
3130 + Cytd_Avg_prc = 1;
3131 +
3132 + **if Cytd_Avg_prc < 0 then =.;
3133 + endcomp;
3134 +
3135 +Define Chg_Avg_prc_Py /computed format=5.1 ; /* 21 */
3136 + compute Chg_Avg_prc_Py;
3137 + **If Pytd_AvgP.sum < 0 then =.;
3138 + if Pytd_AvgP.sum > 0 then
3139 + Chg_Avg_prc_Py=(Cytd_AvgP.sum - Pytd_AvgP.sum)/Pytd_AvgP.sum ;
3140 + else
3141 + Chg_Avg_prc_Py = 1 ;
3142 + **if Chg_Avg_prc_Py < 0 then = .;
3143 + endcomp;
3144 +Define Cytd_cost_ /computed format=7. ; /* 22 */
3145 + compute Cytd_cost_;
3146 + **If Cytd_qty.sum < 0 then =.;
3147 + If Cytd_qty.sum > 0 then
3148 + Cytd_cost_ = (Cytd_cost.sum / Cytd_qty.sum);
3149 + else
3150 + Cytd_cost_ =1 ;
3151 +** if Cytd_Cost < 0 then = .;
3152 + endcomp;
3153 +
3154 +Define Chg_cost_Py /computed format=5.1 ; /* 23 */
3155 + compute Chg_cost_Py;
3156 + **If Pytd_cost.sum <0 then =.;
3157 + If Pytd_cost.sum > 0 then
3158 + Chg_cost_Py=(Cytd_cost.sum - Pytd_cost.sum)*100/Pytd_cost.sum;
3159 + else
3160 + Chg_cost_Py =1;
3161 + **if Chg_Cost_Py <0 then = .;
3162 + endcomp;
3163 +Define Cytd_GM_ /computed format=7. ; /* 24 */
3164 + compute Cytd_GM_;
3165 + Cytd_GM_ = (Cytd_GM.sum / Cytd_qty.sum);
3166 + **if Cytd_Gm < 0 then =.;
3167 + endcomp;
3168 +
3169 +Define Chg_GM_Py /computed format=5.1 ; /* 25 */
3170 + compute Chg_GM_Py;
3171 + **if Pytd_GM.sum < 0 then =.;
3172 + if Pytd_GM.sum > 0 then
3173 + Chg_GM_Py =(Cytd_GM.sum - Pytd_GM.sum)*100/Pytd_GM.sum;
3174 + else
3175 + Chg_GM_Py = 1;
3176 + **if Chg_GM_Py < 0 then = .;
3177 + endcomp;
3178 +Define Gross_Marg_Cy /computed 'Gross Margin %'
3179 + format=5.1 ; /* 26 */
3180 + compute Gross_Marg_Cy;
3181 + **if Cytd_sales.sum < 0 then =.;
3182 + if Cytd_sales.sum > 0 then
3183 + Gross_Marg_Cy =(Cytd_GM.sum /Cytd_sales.sum)*100;
3184 + else
3185 + Gross_Marg_Cy = 1 ;
3186 + **if Gross_Marg_Cy < 0 then =. ;
3187 + endcomp;
3188 +
3189 +break after SalesDist/summarize ol skip;
3190 +break after CstGrp/summarize ol skip;
3191 +break after Ph1_G/summarize ol skip;
3192 +break after Ph2/summarize ol skip;
3193 +break after Ph3/summarize ol skip;
3194 +break after MktGrp/summarize ol skip;
3195 +break after PrType/summarize ol skip;
3196 +break after model/summarize ol skip;
3197 +run;
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
10 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
12 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
20 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Division by zero detected at line 1 column 26.
NOTE: Over 100 NOTES, additional NOTES suppressed.
NOTE: Division by zero detected at line 1 column 26.
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
18 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
9 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
12 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
12 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
16 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
17 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
16 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
17 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
18 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
14 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
9 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
13 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
13 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
12 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
12 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
12 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
12 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
13 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
9 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
10 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
9 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
15 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
12 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
14 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
14 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
15 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
15 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
14 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
14 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
11 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
18 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
9 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
11 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
17 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
10 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
12 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
10 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
18 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
10 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
10 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
10 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
14 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
10 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
9 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
14 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
15 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
14 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
14 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
10 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
12 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
9 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
10 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
11 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
9 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
9 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
10 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
9 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
11 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
14 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
9 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
13 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
11 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
9 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
3 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
11 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
14 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
17 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
14 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
15 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
15 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
9 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
12 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
11 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
2 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
10 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
9 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
4 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
6 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
18 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
11 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
7 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
8 at 1:26
NOTE: Mathematical operations could not be performed at the following
places. The results of
the operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
5 at 1:26
NOTE: There were 3289 observations read from the data set PERMLIB.SUMHOLD2.
NOTE: The data set PERMLIB.B1_ALL has 8285 observations and 48 variables.
NOTE: At least one W.D format was too small for the number to be printed.
The decimal may be
shifted by the "BEST" format.
NOTE: PROCEDURE REPORT used:
real time 13.47 seconds
cpu time 11.87 seconds
3198 +
3199 +
3200 +proc print;
3201 +
3202 + Title "Hello u have reached the end 2 proc ahead ";
3203 + run ;
NOTE: There were 8285 observations read from the data set PERMLIB.B1_ALL.
NOTE: PROCEDURE PRINT used:
real time 5.69 seconds
cpu time 3.10 seconds
3204 +
3205 +proc printto print = print;
3206 +run;
NOTE: PROCEDURE PRINTTO used:
real time 0.01 seconds
cpu time 0.01 seconds
3207 +Data permlib.B1_ALL;
3208 + set permlib.B1_ALL;
3209 + *** Initializing the lenght to 20;
3210 + LENGth SUBTOTAL $20;
3211 + if _BREAK_ = 'SALESDIST' then SUBTOTAL = 'Total Sales District';
3212 + if _BREAK_ = 'CSTGRP' then SUBTOTAL = 'Total CstGrp ';
3213 + if _BREAK_ = 'Ph1_G' then SUBTOTAL = 'Total Ph1 Group ';
3214 + if _BREAK_ = 'PH2' then SUBTOTAL = 'Total Ph2 ';
3215 + if _BREAK_ = 'PH3' then SUBTOTAL = 'Total Ph3 ';
3216 + if _BREAK_ = 'MktGrp' then SUBTOTAL = 'Total Mkt Group ';
3217 + if _BREAK_ = 'MktFunc' then SUBTOTAL = 'Total Mkt Function ';
3218 + if _BREAK_ = 'PrType' then SUBTOTAL = 'Total Prod Type';
3219 + if _BREAK_ = 'model' then SUBTOTAL = 'Total Model ';
3220 + if _BREAK_ = 'ColorGr' then SUBTOTAL = 'Total Color Group ';
3221 + run;
NOTE: There were 8285 observations read from the data set PERMLIB.B1_ALL.
NOTE: The data set PERMLIB.B1_ALL has 8285 observations and 49 variables.
NOTE: DATA statement used:
real time 1.39 seconds
cpu time 0.28 seconds
3222 +************Data permlib.B1_ALL;
3223 +* set permlib.B1_ALL;
3224 +* if _BREAK_ eq 'model' then do;
3225 +* Finish1 = 100;
3226 +* end;
3227 +* else do;
3228 +* if _BREAK_ ne ' ' then Finish1 = .;
3229 +* end;
3230 +************ run;
3231 +Data permlib.B1_ALL;
3232 + set permlib.B1_ALL;
3233 + if SUBTOTAL ne ' ' then Finish1 = 100;
3234 +run;
NOTE: There were 8285 observations read from the data set PERMLIB.B1_ALL.
NOTE: The data set PERMLIB.B1_ALL has 8285 observations and 49 variables.
NOTE: DATA statement used:
real time 1.29 seconds
cpu time 0.19 seconds
NOTE: %INCLUDE (level 1) ending.
3235 %inc " R:\Shared\Cognos\\B1_Xls_ALL_N2.SAS";
NOTE: %INCLUDE (level 1) file R:\Shared\Cognos\\B1_Xls_ALL_N2.SAS is file
R:\Shared\Cognos\\B1_Xls_ALL_N2.SAS.
3236 +******* B1_Xls_ALL_N2
3237 +* last changed = '27-nov-2001';
3238 +**********************************;
3239 +*** Build End of Report Record ***;
3240 +**********************************;
3241 +***libname Permlib 'M:\common\';
3242 +options source2;
3243 +libname Permlib 'R:\Shared\Cognos\\';
NOTE: Libref PERMLIB was successfully assigned as follows:
Engine: V8
Physical Name: R:\Shared\Cognos\
3244 +/*Libname B1;*/
3245 +/*libname B1 R:\Shared\Cognos\\*/
3246 +
3247 +data eor;
3248 + length SUBTOTAL $10;
3249 + SUBTOTAL = '** END **';
3250 + output;
3251 +run;
NOTE: The data set WORK.EOR has 1 observations and 1 variables.
NOTE: DATA statement used:
real time 0.03 seconds
cpu time 0.01 seconds
3252 +***************************************************;
3253 +*** Merge End of Report Record with Driver File ***;
3254 +***************************************************;
3255 +data Permlib.B1_All; set Permlib.B1_All eor;
3256 +***;
3257 +run;
NOTE: There were 8285 observations read from the data set PERMLIB.B1_ALL.
NOTE: There were 1 observations read from the data set WORK.EOR.
NOTE: The data set PERMLIB.B1_ALL has 8286 observations and 49 variables.
NOTE: DATA statement used:
real time 1.51 seconds
cpu time 0.22 seconds
3258 +
3259 +******************************;
3260 +*** Open up Excel and wait ***;
3261 +******************************;
3262 +***this will open up excel;
3263 +
3264 +options noxwait noxsync;
3265 +/*x "C:\Progra~1\Micros~1\Office\Excel";*/
3266 +/*x "C:\Program Files\Microsoft Office\Office\EXCEL.exe"; */
3267 +%SYSEXEC 'C:\Program Files\Microsoft Office\Office\EXCEL.exe';
3268 +
3269 +/* Sleep for 60 seconds to give */
3270 +/* Excel time to come up. */
3271 +
3272 +data _null_;
3273 + /*x=sleep(3);*/
3274 + %SYSEXEC = sleep(5);
3275 +run;
NOTE: DATA statement used:
real time 0.12 seconds
cpu time 0.01 seconds
3276 +
3277 +**filename cmds dde "excel|system";
3278 +filename cmds dde 'excel|system';
3279 +
3280 +data _null_;
3281 + file cmds;
3282 + /*put '[open("M:\common\\B1_All_N2.xls")]';*/
3283 + **put '[open("R:\Shared\Cognos\\B1_All_N2.xls")]';
3284 + put '[open ("C:\Mohan\B1_All_N2.xls")]';
3285 +
3286 +run;
NOTE: The file CMDS is:
DDE Session,
SESSION=excel|system,RECFM=V,LRECL=256
ERROR: DDE session not ready.
FATAL: Unrecoverable I/O error detected in the execution of the data step
program.
Aborted during the EXECUTION phase.
NOTE: 0 records were written to the file CMDS.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: DATA statement used:
real time 0.03 seconds
cpu time 0.01 seconds
3287 +
3288 +*** Allow time for file to open ***;
3289 +data _null_;
3290 + %SYSEXEC =sleep(5);
3291 +run;
NOTE: DATA statement used:
real time 0.05 seconds
cpu time 0.00 seconds
3292 +***************************;
3293 +*** Define Data Mapping ***;
3294 +***************************;
3295 +**filename B1_Dom2 DDE
3296 + 'EXCEL|B1_All!R2C1:R65000C40' notab;
3297 +***** end of old way ;
3298 + libname Permlib 'R:\Shared\Cognos\\';
NOTE: Libref PERMLIB was successfully assigned as follows:
Engine: V8
Physical Name: R:\Shared\Cognos\
3299 +
3300 + ****** This is used to read data into excel file;
3301 + filename SUBTOTAL DDE
3302 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C1:R60000C1' notab;
3303 + filename fld2 DDE
3304 + /*'EXCEL|R:\Shared\Cognos\\B1_All_N2.xls!R2C2:R60000C2' notab;*/
3305 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C2:R60000C2' notab;
3306 + filename CstGrp DDE
3307 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C3:R60000C3' notab;
3308 + filename fld4 DDE
3309 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C4:R60000C4' notab;
3310 + filename fld5 DDE
3311 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C5:R60000C5' notab;
3312 + filename fld6 DDE
3313 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C6:R60000C6' notab;
3314 + filename fld7 DDE
3315 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C7:R60000C7' notab;
3316 + filename fld8 DDE
3317 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C8:R60000C8' notab;
3318 + filename fld9 DDE
3319 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C9:R60000C9' notab;
3320 + filename fld10 DDE
3321 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C10:R60000C10' notab;
3322 + filename fld11 DDE
3323 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C11:R60000C11' notab;
3324 + filename fld12 DDE
3325 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C12:R60000C12' notab;
3326 + filename fld13 DDE
3327 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C13:R60000C13' notab;
3328 + filename fld14 DDE
3329 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C14:R60000C14' notab;
3330 + filename fld15 DDE
3331 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C15:R60000C15' notab;
3332 + filename fld16 DDE
3333 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C16:R60000C16' notab;
3334 + filename fld17 DDE
3335 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C17:R60000C17' notab;
3336 + filename fld18 DDE
3337 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C18:R60000C18' notab;
3338 + filename fld19 DDE
3339 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C19:R60000C19' notab;
3340 + filename fld20 DDE
3341 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C20:R60000C20' notab;
3342 + filename fld21 DDE
3343 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C21:R60000C21' notab;
3344 + filename fld22 DDE
3345 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C22:R60000C22' notab;
3346 + filename fld23 DDE
3347 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C23:R60000C23' notab;
3348 + filename fld24 DDE
3349 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C24:R60000C24' notab;
3350 + filename fld25 DDE
3351 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C25:R60000C25' notab;
3352 + filename fld26 DDE
3353 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C26:R60000C26' notab;
3354 + filename fld27 DDE
3355 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C27:R60000C27' notab;
3356 + filename fld28 DDE
3357 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C28:R60000C28' notab;
3358 + filename fld29 DDE
3359 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C29:R60000C29' notab;
3360 + filename fld30 DDE
3361 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C30:R60000C30' notab;
3362 + filename fld31 DDE
3363 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C31:R60000C31' notab;
3364 + filename fld32 DDE
3365 + 'EXCEL|C:\Mohan\B1_All_N2.xls!R2C32:R60000C32' notab;
3366 +**************************;
3367 +*** Start Placing Data ***;
3368 +**************************;
3369 +data _NULL_; set Permlib.B1_All ;
3370 +
3371 + file SUBTOTAL; put SUBTOTAL ;
3372 + file fld2 ; put SALESDIST ;
3373 + file CstGrp ; put CSTGRP ;
3374 + file fld4 ; put Ph1_G ;
3375 + file fld5 ; put Ph2 ;
3376 + file fld6 ; put Ph3 ;
3377 + file fld7 ; put MktGrp ;
3378 + file fld8 ; put MktFunc ;
3379 + file fld9 ; put PrType ;
3380 + file fld10 ; put model ;
3381 + file fld11 ; put ColorGr ;
3382 + file fld12 ; put Finish1 ;
3383 + file fld13 ; put Py_qty ;
3384 + file fld14 ; put Pytd_qty ;
3385 + file fld15 ; put Chg_Cy_qty ;
3386 + file fld16 ; put Cytd_qty ;
3387 + file fld17 ; put Pytd_list_ ;
3388 + file fld18 ; put Pytd_Disc ;
3389 + file fld19 ; put Pytd_Avg_prc ;
3390 + file fld20 ; put Pytd_cost_ ;
3391 + file fld21 ; put Pytd_GM_ ;
3392 + file fld22 ; put Gross_Marg_Py ;
3393 + file fld23 ; put Cytd_list_ ;
3394 + file fld24 ; put Chg_list_Py ;
3395 + file fld25 ; put Cytd_Disc ;
3396 + file fld26 ; put Cytd_Avg_prc ;
3397 + file fld27 ; put Chg_Avg_prc_Py ;
3398 + file fld28 ; put Cytd_cost_ ;
3399 + file fld29 ; put Chg_cost_Py ;
3400 + file fld30 ; put Cytd_GM_ ;
3401 + file fld31 ; put Chg_GM_Py ;
3402 + file fld32 ; put Gross_Marg_Cy ;
3403 +run;
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C1:R60000C1.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C2:R60000C2.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C3:R60000C3.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C4:R60000C4.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C5:R60000C5.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C6:R60000C6.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C7:R60000C7.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C8:R60000C8.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C9:R60000C9.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C10:R60000C10.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C11:R60000C11.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C12:R60000C12.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C13:R60000C13.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C14:R60000C14.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C15:R60000C15.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C16:R60000C16.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C17:R60000C17.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C18:R60000C18.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C19:R60000C19.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C20:R60000C20.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C21:R60000C21.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C22:R60000C22.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C23:R60000C23.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C24:R60000C24.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C25:R60000C25.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C26:R60000C26.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C27:R60000C27.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C28:R60000C28.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C29:R60000C29.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C30:R60000C30.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C31:R60000C31.
ERROR: Physical file does not exist,
EXCEL|C:\Mohan\B1_All_N2.xls!R2C32:R60000C32.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: DATA statement used:
real time 0.37 seconds
cpu time 0.05 seconds
3404 +/*** end of program ***/
3405 +/* Microsoft defines the DDE topic */
3406 +/* SYSTEM to enable commands to be */
3407 +/* invoked within Excel. */
3408 +*----> filename cmds dde 'EXCEL|SYSTEM';
3409 +/* These PUT statements are */
3410 +/* executing Excel macro commands */
3411 +
3412 +*---->data _null_;
3413 +*----> file cmds;
3414 +*----> put '[SAVE()]';
3415 +*----> put '[QUIT()]';
3416 +*----> run;
3417 +
3418 +*********************;
3419 +**** SEND E-MAIL ****;
3420 +*********************;
3421 +filename outbox email emailid="B1_file";
3422 +
3423 +data _null_;
3424 + file outbox
3425 + to=('Sundareswaran.mohan@kohler.com')
3426 + subject='B1_file ';
3427 + /*put '!EM_ATTACH!' 'M:\common\\B1_All_N2.xls';*/
3428 +
3429 + put '!EM_ATTACH!''R:\Shared\Cognos\\B1_All_N2.xls';
3430 + ***********************;
3431 +run;
NOTE: The file OUTBOX is:
E-Mail Access Device
ERROR: Invalid value for the !EM_ATTACH option.
FATAL: Unrecoverable I/O error detected in the execution of the data step
program.
Aborted during the EXECUTION phase.
Message sent
To: ('Sundareswaran.mohan@kohler.com' )
Cc:
Subject: B1_file
Attachments: 'R:\Shared\Cognos\\B1_All_N2.xls
NOTE: 0 records were written to the file OUTBOX.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: DATA statement used:
real time 1.73 seconds
cpu time 0.12 seconds
3432 +
3433 +quit;
3434 +
3435 +
NOTE: %INCLUDE (level 1) ending.
|