-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMonthly Facility_FY19 HTS Update.sql
8639 lines (7823 loc) · 411 KB
/
Monthly Facility_FY19 HTS Update.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
SELECT district.name || ' / ' || ou.name AS facility,
'DSD' AS placeholder1,
/*Auto-Calculate*/
/*HTS_TST_num*/
(
/*HTS_TST (Facility) - PITC Inpatient Services*/
COALESCE(HTS_TST_Inpatient_0_8_f_pos.value,0)+
COALESCE(HTS_TST_Inpatient_0_8_f_neg.value,0)+
COALESCE(HTS_TST_Inpatient_0_8_m_pos.value,0)+
COALESCE(HTS_TST_Inpatient_0_8_m_neg.value,0)+
(COALESCE(HTS_TST_Inpatient_9_18_f_pos.value,0)+COALESCE(HTS_TST_Inpatient_19_4_f_pos.value,0))+
(COALESCE(HTS_TST_Inpatient_9_18_f_neg.value,0)+COALESCE(HTS_TST_Inpatient_19_4_f_neg.value,0))+
(COALESCE(HTS_TST_Inpatient_9_18_m_pos.value,0)+COALESCE(HTS_TST_Inpatient_19_4_m_pos.value,0))+
(COALESCE(HTS_TST_Inpatient_9_18_m_neg.value,0)+COALESCE(HTS_TST_Inpatient_19_4_m_neg.value,0))+
COALESCE(HTS_TST_Inpatient_5_9_f_pos.value,0)+
COALESCE(HTS_TST_Inpatient_5_9_f_neg.value,0)+
COALESCE(HTS_TST_Inpatient_5_9_m_pos.value,0)+
COALESCE(HTS_TST_Inpatient_5_9_m_neg.value,0)+
COALESCE(HTS_TST_Inpatient_10_14_f_pos.value,0)+
COALESCE(HTS_TST_Inpatient_10_14_f_neg.value,0)+
COALESCE(HTS_TST_Inpatient_10_14_m_pos.value,0)+
COALESCE(HTS_TST_Inpatient_10_14_m_neg.value,0)+
COALESCE(HTS_TST_Inpatient_15_19_f_pos.value,0)+
COALESCE(HTS_TST_Inpatient_15_19_f_neg.value,0)+
COALESCE(HTS_TST_Inpatient_15_19_m_pos.value,0)+
COALESCE(HTS_TST_Inpatient_15_19_m_neg.value,0)+
COALESCE(HTS_TST_Inpatient_20_24_f_pos.value,0)+
COALESCE(HTS_TST_Inpatient_20_24_f_neg.value,0)+
COALESCE(HTS_TST_Inpatient_20_24_m_pos.value,0)+
COALESCE(HTS_TST_Inpatient_20_24_m_neg.value,0)+
(COALESCE(HTS_TST_Inpatient_25_29_f_pos.value,0)+COALESCE(HTS_TST_Inpatient_30_49_f_pos.value,0))+
(COALESCE(HTS_TST_Inpatient_25_29_f_neg.value,0)+COALESCE(HTS_TST_Inpatient_30_49_f_neg.value,0))+
(COALESCE(HTS_TST_Inpatient_25_29_m_pos.value,0)+COALESCE(HTS_TST_Inpatient_30_49_m_pos.value,0))+
(COALESCE(HTS_TST_Inpatient_25_29_m_neg.value,0)+COALESCE(HTS_TST_Inpatient_30_49_m_neg.value,0))+
COALESCE(HTS_TST_Inpatient_35_39_f_pos.value,0)+
COALESCE(HTS_TST_Inpatient_35_39_f_neg.value,0)+
COALESCE(HTS_TST_Inpatient_35_39_m_pos.value,0)+
COALESCE(HTS_TST_Inpatient_35_39_m_neg.value,0)+
COALESCE(HTS_TST_Inpatient_40_44_f_pos.value,0)+
COALESCE(HTS_TST_Inpatient_40_44_f_neg.value,0)+
COALESCE(HTS_TST_Inpatient_40_44_m_pos.value,0)+
COALESCE(HTS_TST_Inpatient_40_44_m_neg.value,0)+
COALESCE(HTS_TST_Inpatient_45_49_f_pos.value,0)+
COALESCE(HTS_TST_Inpatient_45_49_f_neg.value,0)+
COALESCE(HTS_TST_Inpatient_45_49_m_pos.value,0)+
COALESCE(HTS_TST_Inpatient_45_49_m_neg.value,0)+
COALESCE(HTS_TST_Inpatient_50_f_pos.value,0)+
COALESCE(HTS_TST_Inpatient_50_f_neg.value,0)+
COALESCE(HTS_TST_Inpatient_50_m_pos.value,0)+
COALESCE(HTS_TST_Inpatient_50_m_neg.value,0)+
/*HTS_TST (Facility)-PITC Pediatric Services*/
COALESCE(HTS_TST_Pediatric_19_4_f_pos.value,0)+
COALESCE(HTS_TST_Pediatric_19_4_f_neg.value,0)+
COALESCE(HTS_TST_Pediatric_19_4_m_pos.value,0)+
COALESCE(HTS_TST_Pediatric_19_4_m_neg.value,0)+
/*HTS_TST (Facility)-PITC-TB Clinics*/
COALESCE(HTS_TST_TB_men1_f_pos.value,0)+
COALESCE(HTS_TST_TB_men1_f_neg.value,0)+
COALESCE(HTS_TST_TB_men1_m_pos.value,0)+
COALESCE(HTS_TST_TB_men1_m_neg.value,0)+
COALESCE(HTS_TST_TB_1_4_f_pos.value,0)+
COALESCE(HTS_TST_TB_1_4_f_neg.value,0)+
COALESCE(HTS_TST_TB_1_4_m_pos.value,0)+
COALESCE(HTS_TST_TB_1_4_m_neg.value,0)+
COALESCE(HTS_TST_TB_5_9_f_pos.value,0)+
COALESCE(HTS_TST_TB_5_9_f_neg.value,0)+
COALESCE(HTS_TST_TB_5_9_m_pos.value,0)+
COALESCE(HTS_TST_TB_5_9_m_neg.value,0)+
COALESCE(HTS_TST_TB_10_14_f_pos.value,0)+
COALESCE(HTS_TST_TB_10_14_f_neg.value,0)+
COALESCE(HTS_TST_TB_10_14_m_pos.value,0)+
COALESCE(HTS_TST_TB_10_14_m_neg.value,0)+
COALESCE(HTS_TST_TB_15_19_f_pos.value,0)+
COALESCE(HTS_TST_TB_15_19_f_neg.value,0)+
COALESCE(HTS_TST_TB_15_19_m_pos.value,0)+
COALESCE(HTS_TST_TB_15_19_m_neg.value,0)+
COALESCE(HTS_TST_TB_20_24_f_pos.value,0)+
COALESCE(HTS_TST_TB_20_24_f_neg.value,0)+
COALESCE(HTS_TST_TB_20_24_m_pos.value,0)+
COALESCE(HTS_TST_TB_20_24_m_neg.value,0)+
COALESCE(HTS_TST_TB_25_29_f_pos.value,0)+
COALESCE(HTS_TST_TB_25_29_f_neg.value,0)+
COALESCE(HTS_TST_TB_25_29_m_pos.value,0)+
COALESCE(HTS_TST_TB_25_29_m_neg.value,0)+
COALESCE(HTS_TST_TB_30_34_f_pos.value,0)+
COALESCE(HTS_TST_TB_30_34_f_neg.value,0)+
COALESCE(HTS_TST_TB_30_34_m_pos.value,0)+
COALESCE(HTS_TST_TB_30_34_m_neg.value,0)+
COALESCE(HTS_TST_TB_35_39_f_pos.value,0)+
COALESCE(HTS_TST_TB_35_39_f_neg.value,0)+
COALESCE(HTS_TST_TB_35_39_m_pos.value,0)+
COALESCE(HTS_TST_TB_35_39_m_neg.value,0)+
COALESCE(HTS_TST_TB_40_44_f_pos.value,0)+
COALESCE(HTS_TST_TB_40_44_f_neg.value,0)+
COALESCE(HTS_TST_TB_40_44_m_pos.value,0)+
COALESCE(HTS_TST_TB_40_44_m_neg.value,0)+
COALESCE(HTS_TST_TB_45_49_f_pos.value,0)+
COALESCE(HTS_TST_TB_45_49_f_neg.value,0)+
COALESCE(HTS_TST_TB_45_49_m_pos.value,0)+
COALESCE(HTS_TST_TB_45_49_m_neg.value,0)+
COALESCE(HTS_TST_TB_50_f_pos.value,0)+
COALESCE(HTS_TST_TB_50_f_neg.value,0)+
COALESCE(HTS_TST_TB_50_m_pos.value,0)+
COALESCE(HTS_TST_TB_50_m_neg.value,0)+
/*HTS_TST (Facility)-PITC PMTCT (ANC Only) Clinics*/
COALESCE(HTS_TST_PMTCT_10_14_pos.value,0)+
COALESCE(HTS_TST_PMTCT_10_14_neg.value,0)+
COALESCE(HTS_TST_PMTCT_15_19_pos.value,0)+
COALESCE(HTS_TST_PMTCT_15_19_neg.value,0)+
COALESCE(HTS_TST_PMTCT_20_24_pos.value,0)+
COALESCE(HTS_TST_PMTCT_20_24_neg.value,0)+
COALESCE(HTS_TST_PMTCT_25_pos.value,0)+
COALESCE(HTS_TST_PMTCT_25_neg.value,0)+
/*HTS_TST (Facility)-PITC PMTCT Post ANC*/
(COALESCE(mat_men1_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_0_8_f_pos.value,0))+
(COALESCE(mat_men1_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_0_8_f_neg.value,0))+
(COALESCE(mat_1_4_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_9_18_f_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_19_4_f_pos.value,0))+
(COALESCE(mat_1_4_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_9_18_f_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_19_4_f_neg.value,0))+
(COALESCE(mat_5_9_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_5_9_f_pos.value,0))+
(COALESCE(mat_5_9_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_5_9_f_neg.value,0))+
(COALESCE(mat_10_14_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_10_14_f_pos.value,0))+
(COALESCE(mat_10_14_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_10_14_f_neg.value,0))+
(COALESCE(mat_15_19_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_15_19_f_pos.value,0))+
(COALESCE(mat_15_19_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_15_19_f_neg.value,0))+
(COALESCE(mat_20_24_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_20_24_f_pos.value,0))+
(COALESCE(mat_20_24_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_20_24_f_neg.value,0))+
(COALESCE(mat_25_29_pos.value,0)+COALESCE(mat_30_34_pos.value,0)+COALESCE(mat_35_39_pos.value,0)+COALESCE(mat_40_44_pos.value,0)+COALESCE(mat_45_49_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_25_29_f_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_30_49_f_pos.value,0))+
(COALESCE(mat_25_29_neg.value,0)+COALESCE(mat_30_34_neg.value,0)+COALESCE(mat_35_39_neg.value,0)+COALESCE(mat_40_44_neg.value,0)+COALESCE(mat_45_49_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_25_29_f_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_30_49_f_neg.value,0))+
COALESCE(HTS_TST_PMTCT_POST_35_39_f_pos.value,0)+
COALESCE(HTS_TST_PMTCT_POST_35_39_f_neg.value,0)+
COALESCE(HTS_TST_PMTCT_POST_40_44_f_pos.value,0)+
COALESCE(HTS_TST_PMTCT_POST_40_44_f_neg.value,0)+
COALESCE(HTS_TST_PMTCT_POST_45_49_f_pos.value,0)+
COALESCE(HTS_TST_PMTCT_POST_45_49_f_neg.value,0)+
(COALESCE(mat_50_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_50_f_pos.value,0))+
(COALESCE(mat_50_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_50_f_neg.value,0))+
/*HTS_TST (Facility)-PITC Emergency Ward*/
COALESCE(HTS_TST_Emergency_0_8_f_pos.value,0)+
COALESCE(HTS_TST_Emergency_0_8_f_neg.value,0)+
COALESCE(HTS_TST_Emergency_0_8_m_pos.value,0)+
COALESCE(HTS_TST_Emergency_0_8_m_neg.value,0)+
(COALESCE(HTS_TST_Emergency_9_18_f_pos.value,0)+COALESCE(HTS_TST_Emergency_19_4_f_pos.value,0))+
(COALESCE(HTS_TST_Emergency_9_18_f_neg.value,0)+COALESCE(HTS_TST_Emergency_19_4_f_neg.value,0))+
(COALESCE(HTS_TST_Emergency_9_18_m_pos.value,0)+COALESCE(HTS_TST_Emergency_19_4_m_pos.value,0))+
(COALESCE(HTS_TST_Emergency_9_18_m_neg.value,0)+COALESCE(HTS_TST_Emergency_19_4_m_neg.value,0))+
COALESCE(HTS_TST_Emergency_5_9_f_pos.value,0)+
COALESCE(HTS_TST_Emergency_5_9_f_neg.value,0)+
COALESCE(HTS_TST_Emergency_5_9_m_pos.value,0)+
COALESCE(HTS_TST_Emergency_5_9_m_neg.value,0)+
COALESCE(HTS_TST_Emergency_10_14_f_pos.value,0)+
COALESCE(HTS_TST_Emergency_10_14_f_neg.value,0)+
COALESCE(HTS_TST_Emergency_10_14_m_pos.value,0)+
COALESCE(HTS_TST_Emergency_10_14_m_neg.value,0)+
COALESCE(HTS_TST_Emergency_15_19_f_pos.value,0)+
COALESCE(HTS_TST_Emergency_15_19_f_neg.value,0)+
COALESCE(HTS_TST_Emergency_15_19_m_pos.value,0)+
COALESCE(HTS_TST_Emergency_15_19_m_neg.value,0)+
COALESCE(HTS_TST_Emergency_20_24_f_pos.value,0)+
COALESCE(HTS_TST_Emergency_20_24_f_neg.value,0)+
COALESCE(HTS_TST_Emergency_20_24_m_pos.value,0)+
COALESCE(HTS_TST_Emergency_20_24_m_neg.value,0)+
(COALESCE(HTS_TST_Emergency_25_29_f_pos.value,0)+COALESCE(HTS_TST_Emergency_30_49_f_pos.value,0))+
(COALESCE(HTS_TST_Emergency_25_29_f_neg.value,0)+COALESCE(HTS_TST_Emergency_30_49_f_neg.value,0))+
(COALESCE(HTS_TST_Emergency_25_29_m_pos.value,0)+COALESCE(HTS_TST_Emergency_30_49_m_pos.value,0))+
(COALESCE(HTS_TST_Emergency_25_29_m_neg.value,0)+COALESCE(HTS_TST_Emergency_30_49_m_neg.value,0))+
COALESCE(HTS_TST_Emergency_35_39_f_pos.value,0)+
COALESCE(HTS_TST_Emergency_35_39_f_neg.value,0)+
COALESCE(HTS_TST_Emergency_35_39_m_pos.value,0)+
COALESCE(HTS_TST_Emergency_35_39_m_neg.value,0)+
COALESCE(HTS_TST_Emergency_40_44_f_pos.value,0)+
COALESCE(HTS_TST_Emergency_40_44_f_neg.value,0)+
COALESCE(HTS_TST_Emergency_40_44_m_pos.value,0)+
COALESCE(HTS_TST_Emergency_40_44_m_neg.value,0)+
COALESCE(HTS_TST_Emergency_45_49_f_pos.value,0)+
COALESCE(HTS_TST_Emergency_45_49_f_neg.value,0)+
COALESCE(HTS_TST_Emergency_45_49_m_pos.value,0)+
COALESCE(HTS_TST_Emergency_45_49_m_neg.value,0)+
COALESCE(HTS_TST_Emergency_50_f_pos.value,0)+
COALESCE(HTS_TST_Emergency_50_f_neg.value,0)+
COALESCE(HTS_TST_Emergency_50_m_pos.value,0)+
COALESCE(HTS_TST_Emergency_50_m_neg.value,0)+
/*HTS_TST (Facility)-Other PITC*/
COALESCE(cpn_m_pos.value,0)+
COALESCE(cpn_m_neg.value,0)+
COALESCE(HTS_TST_Other_0_8_f_pos.value,0)+
COALESCE(HTS_TST_Other_0_8_f_neg.value,0)+
COALESCE(HTS_TST_Other_0_8_m_pos.value,0)+
COALESCE(HTS_TST_Other_0_8_m_neg.value,0)+
(COALESCE(HTS_TST_Other_9_18_f_pos.value,0)+COALESCE(HTS_TST_Other_19_4_f_pos.value,0))+
(COALESCE(HTS_TST_Other_9_18_f_neg.value,0)+COALESCE(HTS_TST_Other_19_4_f_neg.value,0))+
(COALESCE(HTS_TST_Other_9_18_m_pos.value,0)+COALESCE(HTS_TST_Other_19_4_m_pos.value,0))+
(COALESCE(HTS_TST_Other_9_18_m_neg.value,0)+COALESCE(HTS_TST_Other_19_4_m_neg.value,0))+
COALESCE(HTS_TST_Other_5_9_f_pos.value,0)+
COALESCE(HTS_TST_Other_5_9_f_neg.value,0)+
COALESCE(HTS_TST_Other_5_9_m_pos.value,0)+
COALESCE(HTS_TST_Other_5_9_m_neg.value,0)+
COALESCE(HTS_TST_Other_10_14_f_pos.value,0)+
COALESCE(HTS_TST_Other_10_14_f_neg.value,0)+
COALESCE(HTS_TST_Other_10_14_m_pos.value,0)+
COALESCE(HTS_TST_Other_10_14_m_neg.value,0)+
COALESCE(HTS_TST_Other_15_19_f_pos.value,0)+
COALESCE(HTS_TST_Other_15_19_f_neg.value,0)+
COALESCE(HTS_TST_Other_15_19_m_pos.value,0)+
COALESCE(HTS_TST_Other_15_19_m_neg.value,0)+
COALESCE(HTS_TST_Other_20_24_f_pos.value,0)+
COALESCE(HTS_TST_Other_20_24_f_neg.value,0)+
COALESCE(HTS_TST_Other_20_24_m_pos.value,0)+
COALESCE(HTS_TST_Other_20_24_m_neg.value,0)+
(COALESCE(HTS_TST_Other_25_29_f_pos.value,0)+COALESCE(HTS_TST_Other_30_49_f_pos.value,0))+
(COALESCE(HTS_TST_Other_25_29_f_neg.value,0)+COALESCE(HTS_TST_Other_30_49_f_neg.value,0))+
(COALESCE(HTS_TST_Other_25_29_m_pos.value,0)+COALESCE(HTS_TST_Other_30_49_m_pos.value,0))+
(COALESCE(HTS_TST_Other_25_29_m_neg.value,0)+COALESCE(HTS_TST_Other_30_49_m_neg.value,0))+
COALESCE(HTS_TST_Other_35_39_f_pos.value,0)+
COALESCE(HTS_TST_Other_35_39_f_neg.value,0)+
COALESCE(HTS_TST_Other_35_39_m_pos.value,0)+
COALESCE(HTS_TST_Other_35_39_m_neg.value,0)+
COALESCE(HTS_TST_Other_40_44_f_pos.value,0)+
COALESCE(HTS_TST_Other_40_44_f_neg.value,0)+
COALESCE(HTS_TST_Other_40_44_m_pos.value,0)+
COALESCE(HTS_TST_Other_40_44_m_neg.value,0)+
COALESCE(HTS_TST_Other_45_49_f_pos.value,0)+
COALESCE(HTS_TST_Other_45_49_f_neg.value,0)+
COALESCE(HTS_TST_Other_45_49_m_pos.value,0)+
COALESCE(HTS_TST_Other_45_49_m_neg.value,0)+
(COALESCE(HTS_TST_Other_50_f_pos.value,0))+
(COALESCE(HTS_TST_Other_50_f_neg.value,0))+
COALESCE(HTS_TST_Other_50_m_pos.value,0)+
COALESCE(HTS_TST_Other_50_m_neg.value,0)+
/*HTS_TST (Facility)-VCT*/
COALESCE(VCT_0_8_f_pos.value,0)+
COALESCE(VCT_0_8_f_neg.value,0)+
COALESCE(VCT_0_8_m_pos.value,0)+
COALESCE(VCT_0_8_m_neg.value,0)+
(COALESCE(VCT_9_18_f_pos.value,0)+COALESCE(VCT_19_4_f_pos.value,0))+
(COALESCE(VCT_9_18_f_neg.value,0)+COALESCE(VCT_19_4_f_neg.value,0))+
(COALESCE(VCT_9_18_m_pos.value,0)+COALESCE(VCT_19_4_m_pos.value,0))+
(COALESCE(VCT_9_18_m_neg.value,0)+COALESCE(VCT_19_4_m_neg.value,0))+
COALESCE(VCT_5_9_f_pos.value,0)+
COALESCE(VCT_5_9_f_neg.value,0)+
COALESCE(VCT_5_9_m_pos.value,0)+
COALESCE(VCT_5_9_m_neg.value,0)+
COALESCE(VCT_10_14_f_pos.value,0)+
COALESCE(VCT_10_14_f_neg.value,0)+
COALESCE(VCT_10_14_m_pos.value,0)+
COALESCE(VCT_10_14_m_neg.value,0)+
COALESCE(VCT_15_19_f_pos.value,0)+
COALESCE(VCT_15_19_f_neg.value,0)+
COALESCE(VCT_15_19_m_pos.value,0)+
COALESCE(VCT_15_19_m_neg.value,0)+
COALESCE(VCT_20_24_f_pos.value,0)+
COALESCE(VCT_20_24_f_neg.value,0)+
COALESCE(VCT_20_24_m_pos.value,0)+
COALESCE(VCT_20_24_m_neg.value,0)+
(COALESCE(VCT_25_29_f_pos.value,0)+COALESCE(VCT_30_49_f_pos.value,0))+
(COALESCE(VCT_25_29_f_neg.value,0)+COALESCE(VCT_30_49_f_neg.value,0))+
(COALESCE(VCT_25_29_m_pos.value,0)+COALESCE(VCT_30_49_m_pos.value,0))+
(COALESCE(VCT_25_29_m_neg.value,0)+COALESCE(VCT_30_49_m_neg.value,0))+
COALESCE(VCT_35_39_f_pos.value,0)+
COALESCE(VCT_35_39_f_neg.value,0)+
COALESCE(VCT_35_39_m_pos.value,0)+
COALESCE(VCT_35_39_m_neg.value,0)+
COALESCE(VCT_40_44_f_pos.value,0)+
COALESCE(VCT_40_44_f_neg.value,0)+
COALESCE(VCT_40_44_m_pos.value,0)+
COALESCE(VCT_40_44_m_neg.value,0)+
COALESCE(VCT_45_49_f_pos.value,0)+
COALESCE(VCT_45_49_f_neg.value,0)+
COALESCE(VCT_45_49_m_pos.value,0)+
COALESCE(VCT_45_49_m_neg.value,0)+
COALESCE(VCT_50_f_pos.value,0)+
COALESCE(VCT_50_f_neg.value,0)+
COALESCE(VCT_50_m_pos.value,0)+
COALESCE(VCT_50_m_neg.value,0)+
/*Index Testing*/
COALESCE(cpn_index_contact_pos.value,0)+
COALESCE(HTS_TST_Other_index_0_8_f_pos.value,0)+COALESCE(VCT_index_0_8_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_0_8_m_pos.value,0)+COALESCE(VCT_index_0_8_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_9_18_f_pos.value,0)+COALESCE(HTS_TST_Other_index_19_4_f_pos.value,0)+COALESCE(VCT_index_9_18_f_pos.value,0)+COALESCE(VCT_index_19_4_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_9_18_m_pos.value,0)+COALESCE(HTS_TST_Other_index_19_4_m_pos.value,0)+COALESCE(VCT_index_9_18_m_pos.value,0)+COALESCE(VCT_index_19_4_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_5_9_f_pos.value,0)+COALESCE(VCT_index_5_9_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_5_9_m_pos.value,0)+COALESCE(VCT_index_5_9_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_10_14_f_pos.value,0)+COALESCE(VCT_index_10_14_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_10_14_m_pos.value,0)+COALESCE(VCT_index_10_14_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_15_19_f_pos.value,0)+COALESCE(VCT_index_15_19_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_15_19_m_pos.value,0)+COALESCE(VCT_index_15_19_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_20_24_f_pos.value,0)+COALESCE(VCT_index_20_24_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_20_24_m_pos.value,0)+COALESCE(VCT_index_20_24_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_25_29_f_pos.value,0)+COALESCE(VCT_index_25_29_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_25_29_m_pos.value,0)+COALESCE(VCT_index_25_29_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_30_49_f_pos.value,0)+COALESCE(VCT_index_30_49_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_30_49_m_pos.value,0)+COALESCE(VCT_index_30_49_m_pos.value,0)+
(COALESCE(HTS_TST_Other_index_35_39_f_pos.value,0)+COALESCE(VCT_index_35_39_f_pos.value,0))+
(COALESCE(HTS_TST_Other_index_35_39_m_pos.value,0)+COALESCE(VCT_index_35_39_m_pos.value,0))+
(COALESCE(HTS_TST_Other_index_40_44_f_pos.value,0)+COALESCE(VCT_index_40_44_f_pos.value,0))+
(COALESCE(HTS_TST_Other_index_40_44_m_pos.value,0)+COALESCE(VCT_index_40_44_m_pos.value,0))+
(COALESCE(HTS_TST_Other_index_45_49_f_pos.value,0)+COALESCE(VCT_index_45_49_f_pos.value,0))+
(COALESCE(HTS_TST_Other_index_45_49_m_pos.value,0)+COALESCE(VCT_index_45_49_m_pos.value,0))+
COALESCE(HTS_TST_Other_index_50_f_pos.value,0)+COALESCE(VCT_index_50_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_50_m_pos.value,0)+COALESCE(VCT_index_50_m_pos.value,0)+
COALESCE(cpn_index_contact_neg.value,0)+
COALESCE(HTS_TST_Other_index_0_8_f_neg.value,0)+COALESCE(VCT_index_0_8_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_0_8_m_neg.value,0)+COALESCE(VCT_index_0_8_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_9_18_f_neg.value,0)+COALESCE(HTS_TST_Other_index_19_4_f_neg.value,0)+COALESCE(VCT_index_9_18_f_neg.value,0)+COALESCE(VCT_index_19_4_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_9_18_m_neg.value,0)+COALESCE(HTS_TST_Other_index_19_4_m_neg.value,0)+COALESCE(VCT_index_9_18_m_neg.value,0)+COALESCE(VCT_index_19_4_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_5_9_f_neg.value,0)+COALESCE(VCT_index_5_9_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_5_9_m_neg.value,0)+COALESCE(VCT_index_5_9_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_10_14_f_neg.value,0)+COALESCE(VCT_index_10_14_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_10_14_m_neg.value,0)+COALESCE(VCT_index_10_14_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_15_19_f_neg.value,0)+COALESCE(VCT_index_15_19_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_15_19_m_neg.value,0)+COALESCE(VCT_index_15_19_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_20_24_f_neg.value,0)+COALESCE(VCT_index_20_24_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_20_24_m_neg.value,0)+COALESCE(VCT_index_20_24_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_25_29_f_neg.value,0)+COALESCE(VCT_index_25_29_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_25_29_m_neg.value,0)+COALESCE(VCT_index_25_29_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_30_49_f_neg.value,0)+COALESCE(VCT_index_30_49_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_30_49_m_neg.value,0)+COALESCE(VCT_index_30_49_m_neg.value,0)+
(COALESCE(HTS_TST_Other_index_35_39_f_neg.value,0)+COALESCE(VCT_index_35_39_f_neg.value,0))+
(COALESCE(HTS_TST_Other_index_35_39_m_neg.value,0)+COALESCE(VCT_index_35_39_m_neg.value,0))+
(COALESCE(HTS_TST_Other_index_40_44_f_neg.value,0)+COALESCE(VCT_index_40_44_f_neg.value,0))+
(COALESCE(HTS_TST_Other_index_40_44_m_neg.value,0)+COALESCE(VCT_index_40_44_m_neg.value,0))+
(COALESCE(HTS_TST_Other_index_45_49_f_neg.value,0)+COALESCE(VCT_index_45_49_f_neg.value,0))+
(COALESCE(HTS_TST_Other_index_45_49_m_neg.value,0)+COALESCE(VCT_index_45_49_m_neg.value,0))+
COALESCE(HTS_TST_Other_index_50_f_neg.value,0)+COALESCE(VCT_index_50_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_50_m_neg.value,0)+COALESCE(VCT_index_50_m_neg.value,0)
) AS HTS_TST_num,
/*Auto-Calculate*/
/*HTS_TST Positive*/
(
COALESCE(HTS_TST_Inpatient_0_8_f_pos.value,0)+
COALESCE(HTS_TST_Inpatient_0_8_m_pos.value,0)+
(COALESCE(HTS_TST_Inpatient_9_18_f_pos.value,0)+COALESCE(HTS_TST_Inpatient_19_4_f_pos.value,0))+
(COALESCE(HTS_TST_Inpatient_9_18_m_pos.value,0)+COALESCE(HTS_TST_Inpatient_19_4_m_pos.value,0))+
COALESCE(HTS_TST_Inpatient_5_9_f_pos.value,0)+
COALESCE(HTS_TST_Inpatient_5_9_m_pos.value,0)+
COALESCE(HTS_TST_Inpatient_10_14_f_pos.value,0)+
COALESCE(HTS_TST_Inpatient_10_14_m_pos.value,0)+
COALESCE(HTS_TST_Inpatient_15_19_f_pos.value,0)+
COALESCE(HTS_TST_Inpatient_15_19_m_pos.value,0)+
COALESCE(HTS_TST_Inpatient_20_24_f_pos.value,0)+
COALESCE(HTS_TST_Inpatient_20_24_m_pos.value,0)+
(COALESCE(HTS_TST_Inpatient_25_29_f_pos.value,0)+COALESCE(HTS_TST_Inpatient_30_49_f_pos.value,0))+
(COALESCE(HTS_TST_Inpatient_25_29_m_pos.value,0)+COALESCE(HTS_TST_Inpatient_30_49_m_pos.value,0))+
COALESCE(HTS_TST_Inpatient_35_39_f_pos.value,0)+
COALESCE(HTS_TST_Inpatient_35_39_m_pos.value,0)+
COALESCE(HTS_TST_Inpatient_40_44_f_pos.value,0)+
COALESCE(HTS_TST_Inpatient_40_44_m_pos.value,0)+
COALESCE(HTS_TST_Inpatient_45_49_f_pos.value,0)+
COALESCE(HTS_TST_Inpatient_45_49_m_pos.value,0)+
COALESCE(HTS_TST_Inpatient_50_f_pos.value,0)+
COALESCE(HTS_TST_Inpatient_50_m_pos.value,0)+
COALESCE(HTS_TST_Pediatric_19_4_f_pos.value,0)+
COALESCE(HTS_TST_Pediatric_19_4_m_pos.value,0)+
COALESCE(HTS_TST_TB_men1_f_pos.value,0)+
COALESCE(HTS_TST_TB_men1_m_pos.value,0)+
COALESCE(HTS_TST_TB_1_4_f_pos.value,0)+
COALESCE(HTS_TST_TB_1_4_m_pos.value,0)+
COALESCE(HTS_TST_TB_5_9_f_pos.value,0)+
COALESCE(HTS_TST_TB_5_9_m_pos.value,0)+
COALESCE(HTS_TST_TB_10_14_f_pos.value,0)+
COALESCE(HTS_TST_TB_10_14_m_pos.value,0)+
COALESCE(HTS_TST_TB_15_19_f_pos.value,0)+
COALESCE(HTS_TST_TB_15_19_m_pos.value,0)+
COALESCE(HTS_TST_TB_20_24_f_pos.value,0)+
COALESCE(HTS_TST_TB_20_24_m_pos.value,0)+
COALESCE(HTS_TST_TB_25_29_f_pos.value,0)+
COALESCE(HTS_TST_TB_25_29_m_pos.value,0)+
COALESCE(HTS_TST_TB_30_34_f_pos.value,0)+
COALESCE(HTS_TST_TB_30_34_m_pos.value,0)+
COALESCE(HTS_TST_TB_35_39_f_pos.value,0)+
COALESCE(HTS_TST_TB_35_39_m_pos.value,0)+
COALESCE(HTS_TST_TB_40_44_f_pos.value,0)+
COALESCE(HTS_TST_TB_40_44_m_pos.value,0)+
COALESCE(HTS_TST_TB_45_49_f_pos.value,0)+
COALESCE(HTS_TST_TB_45_49_m_pos.value,0)+
COALESCE(HTS_TST_TB_50_f_pos.value,0)+
COALESCE(HTS_TST_TB_50_m_pos.value,0)+
COALESCE(HTS_TST_PMTCT_10_14_pos.value,0)+
COALESCE(HTS_TST_PMTCT_15_19_pos.value,0)+
COALESCE(HTS_TST_PMTCT_20_24_pos.value,0)+
COALESCE(HTS_TST_PMTCT_25_pos.value,0)+
(COALESCE(mat_men1_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_0_8_f_pos.value,0))+
(COALESCE(mat_1_4_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_9_18_f_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_19_4_f_pos.value,0))+
(COALESCE(mat_5_9_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_5_9_f_pos.value,0))+
(COALESCE(mat_10_14_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_10_14_f_pos.value,0))+
(COALESCE(mat_15_19_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_15_19_f_pos.value,0))+
(COALESCE(mat_20_24_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_20_24_f_pos.value,0))+
(COALESCE(mat_25_29_pos.value,0)+COALESCE(mat_30_34_pos.value,0)+COALESCE(mat_35_39_pos.value,0)+COALESCE(mat_40_44_pos.value,0)+COALESCE(mat_45_49_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_25_29_f_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_30_49_f_pos.value,0))+
COALESCE(HTS_TST_PMTCT_POST_35_39_f_pos.value,0)+
COALESCE(HTS_TST_PMTCT_POST_40_44_f_pos.value,0)+
COALESCE(HTS_TST_PMTCT_POST_45_49_f_pos.value,0)+
(COALESCE(mat_50_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_50_f_pos.value,0))+
COALESCE(HTS_TST_Emergency_0_8_f_pos.value,0)+
COALESCE(HTS_TST_Emergency_0_8_m_pos.value,0)+
(COALESCE(HTS_TST_Emergency_9_18_f_pos.value,0)+COALESCE(HTS_TST_Emergency_19_4_f_pos.value,0))+
(COALESCE(HTS_TST_Emergency_9_18_m_pos.value,0)+COALESCE(HTS_TST_Emergency_19_4_m_pos.value,0))+
COALESCE(HTS_TST_Emergency_5_9_f_pos.value,0)+
COALESCE(HTS_TST_Emergency_5_9_m_pos.value,0)+
COALESCE(HTS_TST_Emergency_10_14_f_pos.value,0)+
COALESCE(HTS_TST_Emergency_10_14_m_pos.value,0)+
COALESCE(HTS_TST_Emergency_15_19_f_pos.value,0)+
COALESCE(HTS_TST_Emergency_15_19_m_pos.value,0)+
COALESCE(HTS_TST_Emergency_20_24_f_pos.value,0)+
COALESCE(HTS_TST_Emergency_20_24_m_pos.value,0)+
(COALESCE(HTS_TST_Emergency_25_29_f_pos.value,0)+COALESCE(HTS_TST_Emergency_30_49_f_pos.value,0))+
(COALESCE(HTS_TST_Emergency_25_29_m_pos.value,0)+COALESCE(HTS_TST_Emergency_30_49_m_pos.value,0))+
COALESCE(HTS_TST_Emergency_35_39_f_pos.value,0)+
COALESCE(HTS_TST_Emergency_35_39_m_pos.value,0)+
COALESCE(HTS_TST_Emergency_40_44_f_pos.value,0)+
COALESCE(HTS_TST_Emergency_40_44_m_pos.value,0)+
COALESCE(HTS_TST_Emergency_45_49_f_pos.value,0)+
COALESCE(HTS_TST_Emergency_45_49_m_pos.value,0)+
COALESCE(HTS_TST_Emergency_50_f_pos.value,0)+
COALESCE(HTS_TST_Emergency_50_m_pos.value,0)+
COALESCE(cpn_m_pos.value,0)+
COALESCE(HTS_TST_Other_0_8_f_pos.value,0)+
COALESCE(HTS_TST_Other_0_8_m_pos.value,0)+
(COALESCE(HTS_TST_Other_9_18_f_pos.value,0)+COALESCE(HTS_TST_Other_19_4_f_pos.value,0))+
(COALESCE(HTS_TST_Other_9_18_m_pos.value,0)+COALESCE(HTS_TST_Other_19_4_m_pos.value,0))+
COALESCE(HTS_TST_Other_5_9_f_pos.value,0)+
COALESCE(HTS_TST_Other_5_9_m_pos.value,0)+
COALESCE(HTS_TST_Other_10_14_f_pos.value,0)+
COALESCE(HTS_TST_Other_10_14_m_pos.value,0)+
COALESCE(HTS_TST_Other_15_19_f_pos.value,0)+
COALESCE(HTS_TST_Other_15_19_m_pos.value,0)+
COALESCE(HTS_TST_Other_20_24_f_pos.value,0)+
COALESCE(HTS_TST_Other_20_24_m_pos.value,0)+
(COALESCE(HTS_TST_Other_25_29_f_pos.value,0)+COALESCE(HTS_TST_Other_30_49_f_pos.value,0))+
(COALESCE(HTS_TST_Other_25_29_m_pos.value,0)+COALESCE(HTS_TST_Other_30_49_m_pos.value,0))+
COALESCE(HTS_TST_Other_35_39_f_pos.value,0)+
COALESCE(HTS_TST_Other_35_39_m_pos.value,0)+
COALESCE(HTS_TST_Other_40_44_f_pos.value,0)+
COALESCE(HTS_TST_Other_40_44_m_pos.value,0)+
COALESCE(HTS_TST_Other_45_49_f_pos.value,0)+
COALESCE(HTS_TST_Other_45_49_m_pos.value,0)+
(COALESCE(HTS_TST_Other_50_f_pos.value,0))+
COALESCE(HTS_TST_Other_50_m_pos.value,0)+
COALESCE(VCT_0_8_f_pos.value,0)+
COALESCE(VCT_0_8_m_pos.value,0)+
(COALESCE(VCT_9_18_f_pos.value,0)+COALESCE(VCT_19_4_f_pos.value,0))+
(COALESCE(VCT_9_18_m_pos.value,0)+COALESCE(VCT_19_4_m_pos.value,0))+
COALESCE(VCT_5_9_f_pos.value,0)+
COALESCE(VCT_5_9_m_pos.value,0)+
COALESCE(VCT_10_14_f_pos.value,0)+
COALESCE(VCT_10_14_m_pos.value,0)+
COALESCE(VCT_15_19_f_pos.value,0)+
COALESCE(VCT_15_19_m_pos.value,0)+
COALESCE(VCT_20_24_f_pos.value,0)+
COALESCE(VCT_20_24_m_pos.value,0)+
(COALESCE(VCT_25_29_f_pos.value,0)+COALESCE(VCT_30_49_f_pos.value,0))+
(COALESCE(VCT_25_29_m_pos.value,0)+COALESCE(VCT_30_49_m_pos.value,0))+
COALESCE(VCT_35_39_f_pos.value,0)+
COALESCE(VCT_35_39_m_pos.value,0)+
COALESCE(VCT_40_44_f_pos.value,0)+
COALESCE(VCT_40_44_m_pos.value,0)+
COALESCE(VCT_45_49_f_pos.value,0)+
COALESCE(VCT_45_49_m_pos.value,0)+
COALESCE(VCT_50_f_pos.value,0)+
COALESCE(VCT_50_m_pos.value,0)+
COALESCE(cpn_index_contact_pos.value,0)+
COALESCE(HTS_TST_Other_index_0_8_f_pos.value,0)+COALESCE(VCT_index_0_8_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_0_8_m_pos.value,0)+COALESCE(VCT_index_0_8_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_9_18_f_pos.value,0)+COALESCE(HTS_TST_Other_index_19_4_f_pos.value,0)+COALESCE(VCT_index_9_18_f_pos.value,0)+COALESCE(VCT_index_19_4_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_9_18_m_pos.value,0)+COALESCE(HTS_TST_Other_index_19_4_m_pos.value,0)+COALESCE(VCT_index_9_18_m_pos.value,0)+COALESCE(VCT_index_19_4_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_5_9_f_pos.value,0)+COALESCE(VCT_index_5_9_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_5_9_m_pos.value,0)+COALESCE(VCT_index_5_9_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_10_14_f_pos.value,0)+COALESCE(VCT_index_10_14_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_10_14_m_pos.value,0)+COALESCE(VCT_index_10_14_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_15_19_f_pos.value,0)+COALESCE(VCT_index_15_19_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_15_19_m_pos.value,0)+COALESCE(VCT_index_15_19_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_20_24_f_pos.value,0)+COALESCE(VCT_index_20_24_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_20_24_m_pos.value,0)+COALESCE(VCT_index_20_24_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_25_29_f_pos.value,0)+COALESCE(VCT_index_25_29_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_25_29_m_pos.value,0)+COALESCE(VCT_index_25_29_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_30_49_f_pos.value,0)+COALESCE(VCT_index_30_49_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_30_49_m_pos.value,0)+COALESCE(VCT_index_30_49_m_pos.value,0)+
(COALESCE(HTS_TST_Other_index_35_39_f_pos.value,0)+COALESCE(VCT_index_35_39_f_pos.value,0))+
(COALESCE(HTS_TST_Other_index_35_39_m_pos.value,0)+COALESCE(VCT_index_35_39_m_pos.value,0))+
(COALESCE(HTS_TST_Other_index_40_44_f_pos.value,0)+COALESCE(VCT_index_40_44_f_pos.value,0))+
(COALESCE(HTS_TST_Other_index_40_44_m_pos.value,0)+COALESCE(VCT_index_40_44_m_pos.value,0))+
(COALESCE(HTS_TST_Other_index_45_49_f_pos.value,0)+COALESCE(VCT_index_45_49_f_pos.value,0))+
(COALESCE(HTS_TST_Other_index_45_49_m_pos.value,0)+COALESCE(VCT_index_45_49_m_pos.value,0))+
COALESCE(HTS_TST_Other_index_50_f_pos.value,0)+COALESCE(VCT_index_50_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_50_m_pos.value,0)+COALESCE(VCT_index_50_m_pos.value,0)
) AS HTS_TST_pos,
/*HTS_TST Key Population*/
COALESCE(HTS_TST_PWID_pos.value,0) AS HTS_TST_PWID_pos,
COALESCE(HTS_TST_PWID_neg.value,0) AS HTS_TST_PWID_neg,
COALESCE(HTS_TST_MSM_pos.value,0) AS HTS_TST_MSM_pos,
COALESCE(HTS_TST_MSM_neg.value,0) AS HTS_TST_MSM_neg,
COALESCE(HTS_TST_TG_pos.value,0) AS HTS_TST_TG_pos,
COALESCE(HTS_TST_TG_neg.value,0) AS HTS_TST_TG_neg,
COALESCE(HTS_TST_FSW_pos.value,0) AS HTS_TST_FSW_pos,
COALESCE(HTS_TST_FSW_neg.value,0) AS HTS_TST_FSW_neg,
COALESCE(HTS_TST_Closed_pos.value,0) AS HTS_TST_Closed_pos,
COALESCE(HTS_TST_Closed_neg.value,0) AS HTS_TST_Closed_neg,
/*Auto-Calculate*/
/*HTS_TST Index Testing*/
(
COALESCE(cpn_index_contact_pos.value,0)+
COALESCE(HTS_TST_Other_index_0_8_f_pos.value,0)+COALESCE(VCT_index_0_8_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_0_8_m_pos.value,0)+COALESCE(VCT_index_0_8_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_9_18_f_pos.value,0)+COALESCE(HTS_TST_Other_index_19_4_f_pos.value,0)+COALESCE(VCT_index_9_18_f_pos.value,0)+COALESCE(VCT_index_19_4_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_9_18_m_pos.value,0)+COALESCE(HTS_TST_Other_index_19_4_m_pos.value,0)+COALESCE(VCT_index_9_18_m_pos.value,0)+COALESCE(VCT_index_19_4_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_5_9_f_pos.value,0)+COALESCE(VCT_index_5_9_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_5_9_m_pos.value,0)+COALESCE(VCT_index_5_9_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_10_14_f_pos.value,0)+COALESCE(VCT_index_10_14_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_10_14_m_pos.value,0)+COALESCE(VCT_index_10_14_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_15_19_f_pos.value,0)+COALESCE(VCT_index_15_19_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_15_19_m_pos.value,0)+COALESCE(VCT_index_15_19_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_20_24_f_pos.value,0)+COALESCE(VCT_index_20_24_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_20_24_m_pos.value,0)+COALESCE(VCT_index_20_24_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_25_29_f_pos.value,0)+COALESCE(VCT_index_25_29_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_25_29_m_pos.value,0)+COALESCE(VCT_index_25_29_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_30_49_f_pos.value,0)+COALESCE(VCT_index_30_49_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_30_49_m_pos.value,0)+COALESCE(VCT_index_30_49_m_pos.value,0)+
(COALESCE(HTS_TST_Other_index_35_39_f_pos.value,0)+COALESCE(VCT_index_35_39_f_pos.value,0))+
(COALESCE(HTS_TST_Other_index_35_39_m_pos.value,0)+COALESCE(VCT_index_35_39_m_pos.value,0))+
(COALESCE(HTS_TST_Other_index_40_44_f_pos.value,0)+COALESCE(VCT_index_40_44_f_pos.value,0))+
(COALESCE(HTS_TST_Other_index_40_44_m_pos.value,0)+COALESCE(VCT_index_40_44_m_pos.value,0))+
(COALESCE(HTS_TST_Other_index_45_49_f_pos.value,0)+COALESCE(VCT_index_45_49_f_pos.value,0))+
(COALESCE(HTS_TST_Other_index_45_49_m_pos.value,0)+COALESCE(VCT_index_45_49_m_pos.value,0))+
COALESCE(HTS_TST_Other_index_50_f_pos.value,0)+COALESCE(VCT_index_50_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_50_m_pos.value,0)+COALESCE(VCT_index_50_m_pos.value,0)
) AS Index_pos,
(
COALESCE(cpn_index_contact_neg.value,0)+
COALESCE(HTS_TST_Other_index_0_8_f_neg.value,0)+COALESCE(VCT_index_0_8_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_0_8_m_neg.value,0)+COALESCE(VCT_index_0_8_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_9_18_f_neg.value,0)+COALESCE(HTS_TST_Other_index_19_4_f_neg.value,0)+COALESCE(VCT_index_9_18_f_neg.value,0)+COALESCE(VCT_index_19_4_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_9_18_m_neg.value,0)+COALESCE(HTS_TST_Other_index_19_4_m_neg.value,0)+COALESCE(VCT_index_9_18_m_neg.value,0)+COALESCE(VCT_index_19_4_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_5_9_f_neg.value,0)+COALESCE(VCT_index_5_9_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_5_9_m_neg.value,0)+COALESCE(VCT_index_5_9_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_10_14_f_neg.value,0)+COALESCE(VCT_index_10_14_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_10_14_m_neg.value,0)+COALESCE(VCT_index_10_14_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_15_19_f_neg.value,0)+COALESCE(VCT_index_15_19_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_15_19_m_neg.value,0)+COALESCE(VCT_index_15_19_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_20_24_f_neg.value,0)+COALESCE(VCT_index_20_24_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_20_24_m_neg.value,0)+COALESCE(VCT_index_20_24_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_25_29_f_neg.value,0)+COALESCE(VCT_index_25_29_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_25_29_m_neg.value,0)+COALESCE(VCT_index_25_29_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_30_49_f_neg.value,0)+COALESCE(VCT_index_30_49_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_30_49_m_neg.value,0)+COALESCE(VCT_index_30_49_m_neg.value,0)+
(COALESCE(HTS_TST_Other_index_35_39_f_neg.value,0)+COALESCE(VCT_index_35_39_f_neg.value,0))+
(COALESCE(HTS_TST_Other_index_35_39_m_neg.value,0)+COALESCE(VCT_index_35_39_m_neg.value,0))+
(COALESCE(HTS_TST_Other_index_40_44_f_neg.value,0)+COALESCE(VCT_index_40_44_f_neg.value,0))+
(COALESCE(HTS_TST_Other_index_40_44_m_neg.value,0)+COALESCE(VCT_index_40_44_m_neg.value,0))+
(COALESCE(HTS_TST_Other_index_45_49_f_neg.value,0)+COALESCE(VCT_index_45_49_f_neg.value,0))+
(COALESCE(HTS_TST_Other_index_45_49_m_neg.value,0)+COALESCE(VCT_index_45_49_m_neg.value,0))+
COALESCE(HTS_TST_Other_index_50_f_neg.value,0)+COALESCE(VCT_index_50_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_50_m_neg.value,0)+COALESCE(VCT_index_50_m_neg.value,0)
) AS Index_neg,
/*HTS_TST (Facility)-PITC Inpatient Services*/
COALESCE(HTS_TST_Inpatient_0_8_f_pos.value,0) AS HTS_TST_Inpatient_men1_f_pos,
COALESCE(HTS_TST_Inpatient_0_8_f_neg.value,0) AS HTS_TST_Inpatient_men1_f_neg,
COALESCE(HTS_TST_Inpatient_0_8_m_pos.value,0) AS HTS_TST_Inpatient_men1_m_pos,
COALESCE(HTS_TST_Inpatient_0_8_m_neg.value,0) AS HTS_TST_Inpatient_men1_m_neg,
(COALESCE(HTS_TST_Inpatient_9_18_f_pos.value,0)+COALESCE(HTS_TST_Inpatient_19_4_f_pos.value,0)) AS HTS_TST_Inpatient_1_4_f_pos,
(COALESCE(HTS_TST_Inpatient_9_18_f_neg.value,0)+COALESCE(HTS_TST_Inpatient_19_4_f_neg.value,0)) AS HTS_TST_Inpatient_1_4_f_neg,
(COALESCE(HTS_TST_Inpatient_9_18_m_pos.value,0)+COALESCE(HTS_TST_Inpatient_19_4_m_pos.value,0)) AS HTS_TST_Inpatient_1_4_m_pos,
(COALESCE(HTS_TST_Inpatient_9_18_m_neg.value,0)+COALESCE(HTS_TST_Inpatient_19_4_m_neg.value,0)) AS HTS_TST_Inpatient_1_4_m_neg,
COALESCE(HTS_TST_Inpatient_5_9_f_pos.value,0) AS HTS_TST_Inpatient_5_9_f_pos,
COALESCE(HTS_TST_Inpatient_5_9_f_neg.value,0) AS HTS_TST_Inpatient_5_9_f_neg,
COALESCE(HTS_TST_Inpatient_5_9_m_pos.value,0) AS HTS_TST_Inpatient_5_9_m_pos,
COALESCE(HTS_TST_Inpatient_5_9_m_neg.value,0) AS HTS_TST_Inpatient_5_9_m_neg,
COALESCE(HTS_TST_Inpatient_10_14_f_pos.value,0) AS HTS_TST_Inpatient_10_14_f_pos,
COALESCE(HTS_TST_Inpatient_10_14_f_neg.value,0) AS HTS_TST_Inpatient_10_14_f_neg,
COALESCE(HTS_TST_Inpatient_10_14_m_pos.value,0) AS HTS_TST_Inpatient_10_14_m_pos,
COALESCE(HTS_TST_Inpatient_10_14_m_neg.value,0) AS HTS_TST_Inpatient_10_14_m_neg,
COALESCE(HTS_TST_Inpatient_15_19_f_pos.value,0) AS HTS_TST_Inpatient_15_19_f_pos,
COALESCE(HTS_TST_Inpatient_15_19_f_neg.value,0) AS HTS_TST_Inpatient_15_19_f_neg,
COALESCE(HTS_TST_Inpatient_15_19_m_pos.value,0) AS HTS_TST_Inpatient_15_19_m_pos,
COALESCE(HTS_TST_Inpatient_15_19_m_neg.value,0) AS HTS_TST_Inpatient_15_19_m_neg,
COALESCE(HTS_TST_Inpatient_20_24_f_pos.value,0) AS HTS_TST_Inpatient_20_24_f_pos,
COALESCE(HTS_TST_Inpatient_20_24_f_neg.value,0) AS HTS_TST_Inpatient_20_24_f_neg,
COALESCE(HTS_TST_Inpatient_20_24_m_pos.value,0) AS HTS_TST_Inpatient_20_24_m_pos,
COALESCE(HTS_TST_Inpatient_20_24_m_neg.value,0) AS HTS_TST_Inpatient_20_24_m_neg,
COALESCE(HTS_TST_Inpatient_25_29_f_pos.value,0) AS HTS_TST_Inpatient_25_29_f_pos,
COALESCE(HTS_TST_Inpatient_25_29_f_neg.value,0) AS HTS_TST_Inpatient_25_29_f_neg,
COALESCE(HTS_TST_Inpatient_25_29_m_pos.value,0) AS HTS_TST_Inpatient_25_29_m_pos,
COALESCE(HTS_TST_Inpatient_25_29_m_neg.value,0) AS HTS_TST_Inpatient_25_29_m_neg,
COALESCE(HTS_TST_Inpatient_30_49_f_pos.value,0) AS HTS_TST_Inpatient_30_34_f_pos,
COALESCE(HTS_TST_Inpatient_30_49_f_neg.value,0) AS HTS_TST_Inpatient_30_34_f_neg,
COALESCE(HTS_TST_Inpatient_30_49_m_pos.value,0) AS HTS_TST_Inpatient_30_34_m_pos,
COALESCE(HTS_TST_Inpatient_30_49_m_neg.value,0) AS HTS_TST_Inpatient_30_34_m_neg,
COALESCE(HTS_TST_Inpatient_35_39_f_pos.value,0) AS HTS_TST_Inpatient_35_39_f_pos,
COALESCE(HTS_TST_Inpatient_35_39_f_neg.value,0) AS HTS_TST_Inpatient_35_39_f_neg,
COALESCE(HTS_TST_Inpatient_35_39_m_pos.value,0) AS HTS_TST_Inpatient_35_39_m_pos,
COALESCE(HTS_TST_Inpatient_35_39_m_neg.value,0) AS HTS_TST_Inpatient_35_39_m_neg,
COALESCE(HTS_TST_Inpatient_40_44_f_pos.value,0) AS HTS_TST_Inpatient_40_44_f_pos,
COALESCE(HTS_TST_Inpatient_40_44_f_neg.value,0) AS HTS_TST_Inpatient_40_44_f_neg,
COALESCE(HTS_TST_Inpatient_40_44_m_pos.value,0) AS HTS_TST_Inpatient_40_44_m_pos,
COALESCE(HTS_TST_Inpatient_40_44_m_neg.value,0) AS HTS_TST_Inpatient_40_44_m_neg,
COALESCE(HTS_TST_Inpatient_45_49_f_pos.value,0) AS HTS_TST_Inpatient_45_49_f_pos,
COALESCE(HTS_TST_Inpatient_45_49_f_neg.value,0) AS HTS_TST_Inpatient_45_49_f_neg,
COALESCE(HTS_TST_Inpatient_45_49_m_pos.value,0) AS HTS_TST_Inpatient_45_49_m_pos,
COALESCE(HTS_TST_Inpatient_45_49_m_neg.value,0) AS HTS_TST_Inpatient_45_49_m_neg,
COALESCE(HTS_TST_Inpatient_50_f_pos.value,0) AS HTS_TST_Inpatient_50_f_pos,
COALESCE(HTS_TST_Inpatient_50_f_neg.value,0) AS HTS_TST_Inpatient_50_f_neg,
COALESCE(HTS_TST_Inpatient_50_m_pos.value,0) AS HTS_TST_Inpatient_50_m_pos,
COALESCE(HTS_TST_Inpatient_50_m_neg.value,0) AS HTS_TST_Inpatient_50_m_neg,
/*HTS_TST (Facility)-PITC Pediatric Services*/
'' AS placeholder11,
'' AS placeholder12,
'' AS placeholder13,
'' AS placeholder14,
COALESCE(HTS_TST_Pediatric_19_4_f_pos.value,0) AS HTS_TST_Pediatric_1_4_f_pos,
COALESCE(HTS_TST_Pediatric_19_4_f_neg.value,0) AS HTS_TST_Pediatric_1_4_f_neg,
COALESCE(HTS_TST_Pediatric_19_4_m_pos.value,0) AS HTS_TST_Pediatric_1_4_m_pos,
COALESCE(HTS_TST_Pediatric_19_4_m_neg.value,0) AS HTS_TST_Pediatric_1_4_m_neg,
/*Auto-Calculate*/
/*HTS_TST (Facility)-PITC-TB Clinics*/
(
COALESCE(HTS_TST_TB_men1_f_pos.value,0)+
COALESCE(HTS_TST_TB_men1_m_pos.value,0)+
COALESCE(HTS_TST_TB_1_4_f_pos.value,0)+
COALESCE(HTS_TST_TB_1_4_m_pos.value,0)+
COALESCE(HTS_TST_TB_5_9_f_pos.value,0)+
COALESCE(HTS_TST_TB_5_9_m_pos.value,0)+
COALESCE(HTS_TST_TB_10_14_f_pos.value,0)+
COALESCE(HTS_TST_TB_10_14_m_pos.value,0)+
COALESCE(HTS_TST_TB_15_19_f_pos.value,0)+
COALESCE(HTS_TST_TB_15_19_m_pos.value,0)+
COALESCE(HTS_TST_TB_20_24_f_pos.value,0)+
COALESCE(HTS_TST_TB_20_24_m_pos.value,0)+
COALESCE(HTS_TST_TB_25_29_f_pos.value,0)+
COALESCE(HTS_TST_TB_25_29_m_pos.value,0)+
COALESCE(HTS_TST_TB_30_34_f_pos.value,0)+
COALESCE(HTS_TST_TB_30_34_m_pos.value,0)+
COALESCE(HTS_TST_TB_35_39_f_pos.value,0)+
COALESCE(HTS_TST_TB_35_39_m_pos.value,0)+
COALESCE(HTS_TST_TB_40_44_f_pos.value,0)+
COALESCE(HTS_TST_TB_40_44_m_pos.value,0)+
COALESCE(HTS_TST_TB_45_49_f_pos.value,0)+
COALESCE(HTS_TST_TB_45_49_m_pos.value,0)+
COALESCE(HTS_TST_TB_50_f_pos.value,0)+
COALESCE(HTS_TST_TB_50_m_pos.value,0)
) AS HTS_TST_TB_pos,
(
COALESCE(HTS_TST_TB_men1_f_neg.value,0)+
COALESCE(HTS_TST_TB_men1_m_neg.value,0)+
COALESCE(HTS_TST_TB_1_4_f_neg.value,0)+
COALESCE(HTS_TST_TB_1_4_m_neg.value,0)+
COALESCE(HTS_TST_TB_5_9_f_neg.value,0)+
COALESCE(HTS_TST_TB_5_9_m_neg.value,0)+
COALESCE(HTS_TST_TB_10_14_f_neg.value,0)+
COALESCE(HTS_TST_TB_10_14_m_neg.value,0)+
COALESCE(HTS_TST_TB_15_19_f_neg.value,0)+
COALESCE(HTS_TST_TB_15_19_m_neg.value,0)+
COALESCE(HTS_TST_TB_20_24_f_neg.value,0)+
COALESCE(HTS_TST_TB_20_24_m_neg.value,0)+
COALESCE(HTS_TST_TB_25_29_f_neg.value,0)+
COALESCE(HTS_TST_TB_25_29_m_neg.value,0)+
COALESCE(HTS_TST_TB_30_34_f_neg.value,0)+
COALESCE(HTS_TST_TB_30_34_m_neg.value,0)+
COALESCE(HTS_TST_TB_35_39_f_neg.value,0)+
COALESCE(HTS_TST_TB_35_39_m_neg.value,0)+
COALESCE(HTS_TST_TB_40_44_f_neg.value,0)+
COALESCE(HTS_TST_TB_40_44_m_neg.value,0)+
COALESCE(HTS_TST_TB_45_49_f_neg.value,0)+
COALESCE(HTS_TST_TB_45_49_m_neg.value,0)+
COALESCE(HTS_TST_TB_50_f_neg.value,0)+
COALESCE(HTS_TST_TB_50_m_neg.value,0)
) AS HTS_TST_TB_neg,
/*Auto-Calculate*/
/*HTS_TST (Facility)-PITC PMTCT (ANC1 Only) Clinics*/
(
COALESCE(HTS_TST_PMTCT_10_14_pos.value,0)+
COALESCE(HTS_TST_PMTCT_15_19_pos.value,0)+
COALESCE(HTS_TST_PMTCT_20_24_pos.value,0)+
COALESCE(HTS_TST_PMTCT_25_pos.value,0)
) AS HTS_TST_PMTCT_pos,
(
COALESCE(HTS_TST_PMTCT_10_14_neg.value,0)+
COALESCE(HTS_TST_PMTCT_15_19_neg.value,0)+
COALESCE(HTS_TST_PMTCT_20_24_neg.value,0)+
COALESCE(HTS_TST_PMTCT_25_neg.value,0)
) AS HTS_TST_PMTCT_neg,
/*HTS_TST (Facility)-PITC PMTCT (Post ANC1)*/
(COALESCE(mat_10_14_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_10_14_f_pos.value,0)) AS HTS_TST_PMTCT_POST_10_14_pos,
(COALESCE(mat_10_14_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_10_14_f_neg.value,0)) AS HTS_TST_PMTCT_POST_10_14_neg,
(COALESCE(mat_15_19_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_15_19_f_pos.value,0)) AS HTS_TST_PMTCT_POST_15_19_pos,
(COALESCE(mat_15_19_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_15_19_f_neg.value,0)) AS HTS_TST_PMTCT_POST_15_19_neg,
(COALESCE(mat_20_24_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_20_24_f_pos.value,0)) AS HTS_TST_PMTCT_POST_20_24_pos,
(COALESCE(mat_20_24_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_20_24_f_neg.value,0)) AS HTS_TST_PMTCT_POST_20_24_neg,
(COALESCE(mat_25_29_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_25_29_f_pos.value,0)) AS HTS_TST_PMTCT_POST_25_29_pos,
(COALESCE(mat_25_29_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_25_29_f_neg.value,0)) AS HTS_TST_PMTCT_POST_25_29_neg,
(COALESCE(mat_30_34_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_30_49_f_pos.value,0)) AS HTS_TST_PMTCT_POST_30_34_pos,
(COALESCE(mat_30_34_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_30_49_f_neg.value,0)) AS HTS_TST_PMTCT_POST_30_34_neg,
(COALESCE(mat_35_39_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_35_39_f_pos.value,0)) AS HTS_TST_PMTCT_POST_35_39_pos,
(COALESCE(mat_35_39_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_35_39_f_neg.value,0)) AS HTS_TST_PMTCT_POST_35_39_neg,
(COALESCE(mat_40_44_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_40_44_f_pos.value,0)) AS HTS_TST_PMTCT_POST_40_44_pos,
(COALESCE(mat_40_44_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_40_44_f_neg.value,0)) AS HTS_TST_PMTCT_POST_40_44_neg,
(COALESCE(mat_45_49_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_45_49_f_pos.value,0)) AS HTS_TST_PMTCT_POST_45_49_pos,
(COALESCE(mat_45_49_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_45_49_f_neg.value,0)) AS HTS_TST_PMTCT_POST_45_49_neg,
(COALESCE(mat_50_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_50_f_pos.value,0)) AS HTS_TST_PMTCT_POST_50_pos,
(COALESCE(mat_50_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_50_f_neg.value,0)) AS HTS_TST_PMTCT_POST_50_neg,
/*HTS_TST (Facility)-PITC Emergency Ward*/
COALESCE(HTS_TST_Emergency_0_8_f_pos.value,0) AS HTS_TST_Emergency_men1_f_pos,
COALESCE(HTS_TST_Emergency_0_8_f_neg.value,0) AS HTS_TST_Emergency_men1_f_neg,
COALESCE(HTS_TST_Emergency_0_8_m_pos.value,0) AS HTS_TST_Emergency_men1_m_pos,
COALESCE(HTS_TST_Emergency_0_8_m_neg.value,0) AS HTS_TST_Emergency_men1_m_neg,
(COALESCE(HTS_TST_Emergency_9_18_f_pos.value,0)+COALESCE(HTS_TST_Emergency_19_4_f_pos.value,0)) AS HTS_TST_Emergency_1_4_f_pos,
(COALESCE(HTS_TST_Emergency_9_18_f_neg.value,0)+COALESCE(HTS_TST_Emergency_19_4_f_neg.value,0)) AS HTS_TST_Emergency_1_4_f_neg,
(COALESCE(HTS_TST_Emergency_9_18_m_pos.value,0)+COALESCE(HTS_TST_Emergency_19_4_m_pos.value,0)) AS HTS_TST_Emergency_1_4_m_pos,
(COALESCE(HTS_TST_Emergency_9_18_m_neg.value,0)+COALESCE(HTS_TST_Emergency_19_4_m_neg.value,0)) AS HTS_TST_Emergency_1_4_m_neg,
COALESCE(HTS_TST_Emergency_5_9_f_pos.value,0) AS HTS_TST_Emergency_5_9_f_pos,
COALESCE(HTS_TST_Emergency_5_9_f_neg.value,0) AS HTS_TST_Emergency_5_9_f_neg,
COALESCE(HTS_TST_Emergency_5_9_m_pos.value,0) AS HTS_TST_Emergency_5_9_m_pos,
COALESCE(HTS_TST_Emergency_5_9_m_neg.value,0) AS HTS_TST_Emergency_5_9_m_neg,
COALESCE(HTS_TST_Emergency_10_14_f_pos.value,0) AS HTS_TST_Emergency_10_14_f_pos,
COALESCE(HTS_TST_Emergency_10_14_f_neg.value,0) AS HTS_TST_Emergency_10_14_f_neg,
COALESCE(HTS_TST_Emergency_10_14_m_pos.value,0) AS HTS_TST_Emergency_10_14_m_pos,
COALESCE(HTS_TST_Emergency_10_14_m_neg.value,0) AS HTS_TST_Emergency_10_14_m_neg,
COALESCE(HTS_TST_Emergency_15_19_f_pos.value,0) AS HTS_TST_Emergency_15_19_f_pos,
COALESCE(HTS_TST_Emergency_15_19_f_neg.value,0) AS HTS_TST_Emergency_15_19_f_neg,
COALESCE(HTS_TST_Emergency_15_19_m_pos.value,0) AS HTS_TST_Emergency_15_19_m_pos,
COALESCE(HTS_TST_Emergency_15_19_m_neg.value,0) AS HTS_TST_Emergency_15_19_m_neg,
COALESCE(HTS_TST_Emergency_20_24_f_pos.value,0) AS HTS_TST_Emergency_20_24_f_pos,
COALESCE(HTS_TST_Emergency_20_24_f_neg.value,0) AS HTS_TST_Emergency_20_24_f_neg,
COALESCE(HTS_TST_Emergency_20_24_m_pos.value,0) AS HTS_TST_Emergency_20_24_m_pos,
COALESCE(HTS_TST_Emergency_20_24_m_neg.value,0) AS HTS_TST_Emergency_20_24_m_neg,
COALESCE(HTS_TST_Emergency_25_29_f_pos.value,0) AS HTS_TST_Emergency_25_29_f_pos,
COALESCE(HTS_TST_Emergency_25_29_f_neg.value,0) AS HTS_TST_Emergency_25_29_f_neg,
COALESCE(HTS_TST_Emergency_25_29_m_pos.value,0) AS HTS_TST_Emergency_25_29_m_pos,
COALESCE(HTS_TST_Emergency_25_29_m_neg.value,0) AS HTS_TST_Emergency_25_29_m_neg,
COALESCE(HTS_TST_Emergency_30_49_f_pos.value,0) AS HTS_TST_Emergency_30_49_f_pos,
COALESCE(HTS_TST_Emergency_30_49_f_neg.value,0) AS HTS_TST_Emergency_30_49_f_neg,
COALESCE(HTS_TST_Emergency_30_49_m_pos.value,0) AS HTS_TST_Emergency_30_49_m_pos,
COALESCE(HTS_TST_Emergency_30_49_m_neg.value,0) AS HTS_TST_Emergency_30_49_m_neg,
COALESCE(HTS_TST_Emergency_35_39_f_pos.value,0) AS HTS_TST_Emergency_35_39_f_pos,
COALESCE(HTS_TST_Emergency_35_39_f_neg.value,0) AS HTS_TST_Emergency_35_39_f_neg,
COALESCE(HTS_TST_Emergency_35_39_m_pos.value,0) AS HTS_TST_Emergency_35_39_m_pos,
COALESCE(HTS_TST_Emergency_35_39_m_neg.value,0) AS HTS_TST_Emergency_35_39_m_neg,
COALESCE(HTS_TST_Emergency_40_44_f_pos.value,0) AS HTS_TST_Emergency_40_44_f_pos,
COALESCE(HTS_TST_Emergency_40_44_f_neg.value,0) AS HTS_TST_Emergency_40_44_f_neg,
COALESCE(HTS_TST_Emergency_40_44_m_pos.value,0) AS HTS_TST_Emergency_40_44_m_pos,
COALESCE(HTS_TST_Emergency_40_44_m_neg.value,0) AS HTS_TST_Emergency_40_44_m_neg,
COALESCE(HTS_TST_Emergency_45_49_f_pos.value,0) AS HTS_TST_Emergency_45_49_f_pos,
COALESCE(HTS_TST_Emergency_45_49_f_neg.value,0) AS HTS_TST_Emergency_45_49_f_neg,
COALESCE(HTS_TST_Emergency_45_49_m_pos.value,0) AS HTS_TST_Emergency_45_49_m_pos,
COALESCE(HTS_TST_Emergency_45_49_m_neg.value,0) AS HTS_TST_Emergency_45_49_m_neg,
COALESCE(HTS_TST_Emergency_50_f_pos.value,0) AS HTS_TST_Emergency_50_f_pos,
COALESCE(HTS_TST_Emergency_50_f_neg.value,0) AS HTS_TST_Emergency_50_f_neg,
COALESCE(HTS_TST_Emergency_50_m_pos.value,0) AS HTS_TST_Emergency_50_m_pos,
COALESCE(HTS_TST_Emergency_50_m_neg.value,0) AS HTS_TST_Emergency_50_m_neg,
/*HTS_TST (Facility)-Other PITC*/
'' AS placeholder17,
'' AS placeholder18,
COALESCE(cpn_m_pos.value,0) AS HTS_TST_Other_u_m_pos,
COALESCE(cpn_m_neg.value,0) AS HTS_TST_Other_u_m_neg,
(COALESCE(HTS_TST_Other_0_8_f_pos.value,0)+COALESCE(mat_men1_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_0_8_f_pos.value,0)) AS HTS_TST_Other_men1_f_pos,
(COALESCE(HTS_TST_Other_0_8_f_neg.value,0)+COALESCE(mat_men1_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_0_8_f_neg.value,0)) AS HTS_TST_Other_men1_f_neg,
COALESCE(HTS_TST_Other_0_8_m_pos.value,0) AS HTS_TST_Other_men1_m_pos,
COALESCE(HTS_TST_Other_0_8_m_neg.value,0) AS HTS_TST_Other_men1_m_neg,
(COALESCE(HTS_TST_Other_9_18_f_pos.value,0)+COALESCE(HTS_TST_Other_19_4_f_pos.value,0)+COALESCE(mat_1_4_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_9_18_f_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_19_4_f_pos.value,0)) AS HTS_TST_Other_1_4_f_pos,
(COALESCE(HTS_TST_Other_9_18_f_neg.value,0)+COALESCE(HTS_TST_Other_19_4_f_neg.value,0)+COALESCE(mat_1_4_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_9_18_f_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_19_4_f_neg.value,0)) AS HTS_TST_Other_1_4_f_neg,
(COALESCE(HTS_TST_Other_9_18_m_pos.value,0)+COALESCE(HTS_TST_Other_19_4_m_pos.value,0)) AS HTS_TST_Other_1_4_m_pos,
(COALESCE(HTS_TST_Other_9_18_m_neg.value,0)+COALESCE(HTS_TST_Other_19_4_m_neg.value,0)) AS HTS_TST_Other_1_4_m_neg,
(COALESCE(HTS_TST_Other_5_9_f_pos.value,0)+COALESCE(mat_5_9_pos.value,0)+COALESCE(HTS_TST_PMTCT_POST_5_9_f_pos.value,0)) AS HTS_TST_Other_5_9_f_pos,
(COALESCE(HTS_TST_Other_5_9_f_neg.value,0)+COALESCE(mat_5_9_neg.value,0)+COALESCE(HTS_TST_PMTCT_POST_5_9_f_neg.value,0)) AS HTS_TST_Other_5_9_f_neg,
COALESCE(HTS_TST_Other_5_9_m_pos.value,0) AS HTS_TST_Other_5_9_m_pos,
COALESCE(HTS_TST_Other_5_9_m_neg.value,0) AS HTS_TST_Other_5_9_m_neg,
COALESCE(HTS_TST_Other_10_14_f_pos.value,0) AS HTS_TST_Other_10_14_f_pos,
COALESCE(HTS_TST_Other_10_14_f_neg.value,0) AS HTS_TST_Other_10_14_f_neg,
COALESCE(HTS_TST_Other_10_14_m_pos.value,0) AS HTS_TST_Other_10_14_m_pos,
COALESCE(HTS_TST_Other_10_14_m_neg.value,0) AS HTS_TST_Other_10_14_m_neg,
COALESCE(HTS_TST_Other_15_19_f_pos.value,0) AS HTS_TST_Other_15_19_f_pos,
COALESCE(HTS_TST_Other_15_19_f_neg.value,0) AS HTS_TST_Other_15_19_f_neg,
COALESCE(HTS_TST_Other_15_19_m_pos.value,0) AS HTS_TST_Other_15_19_m_pos,
COALESCE(HTS_TST_Other_15_19_m_neg.value,0) AS HTS_TST_Other_15_19_m_neg,
COALESCE(HTS_TST_Other_20_24_f_pos.value,0) AS HTS_TST_Other_20_24_f_pos,
COALESCE(HTS_TST_Other_20_24_f_neg.value,0) AS HTS_TST_Other_20_24_f_neg,
COALESCE(HTS_TST_Other_20_24_m_pos.value,0) AS HTS_TST_Other_20_24_m_pos,
COALESCE(HTS_TST_Other_20_24_m_neg.value,0) AS HTS_TST_Other_20_24_m_neg,
COALESCE(HTS_TST_Other_25_29_f_pos.value,0) AS HTS_TST_Other_25_29_f_pos,
COALESCE(HTS_TST_Other_25_29_f_neg.value,0) AS HTS_TST_Other_25_29_f_neg,
COALESCE(HTS_TST_Other_25_29_m_pos.value,0) AS HTS_TST_Other_25_29_m_pos,
COALESCE(HTS_TST_Other_25_29_m_neg.value,0) AS HTS_TST_Other_25_29_m_neg,
COALESCE(HTS_TST_Other_30_49_f_pos.value,0) AS HTS_TST_Other_30_34_f_pos,
COALESCE(HTS_TST_Other_30_49_f_neg.value,0) AS HTS_TST_Other_30_34_f_neg,
COALESCE(HTS_TST_Other_30_49_m_pos.value,0) AS HTS_TST_Other_30_34_m_pos,
COALESCE(HTS_TST_Other_30_49_m_neg.value,0) AS HTS_TST_Other_30_34_m_neg,
COALESCE(HTS_TST_Other_35_39_f_pos.value,0) AS HTS_TST_Other_35_39_f_pos,
COALESCE(HTS_TST_Other_35_39_f_neg.value,0) AS HTS_TST_Other_35_39_f_neg,
COALESCE(HTS_TST_Other_35_39_m_pos.value,0) AS HTS_TST_Other_35_39_m_pos,
COALESCE(HTS_TST_Other_35_39_m_neg.value,0) AS HTS_TST_Other_35_39_m_neg,
COALESCE(HTS_TST_Other_40_44_f_pos.value,0) AS HTS_TST_Other_40_44_f_pos,
COALESCE(HTS_TST_Other_40_44_f_neg.value,0) AS HTS_TST_Other_40_44_f_neg,
COALESCE(HTS_TST_Other_40_44_m_pos.value,0) AS HTS_TST_Other_40_44_m_pos,
COALESCE(HTS_TST_Other_40_44_m_neg.value,0) AS HTS_TST_Other_40_44_m_neg,
COALESCE(HTS_TST_Other_45_49_f_pos.value,0) AS HTS_TST_Other_45_49_f_pos,
COALESCE(HTS_TST_Other_45_49_f_neg.value,0) AS HTS_TST_Other_45_49_f_neg,
COALESCE(HTS_TST_Other_45_49_m_pos.value,0) AS HTS_TST_Other_45_49_m_pos,
COALESCE(HTS_TST_Other_45_49_m_neg.value,0) AS HTS_TST_Other_45_49_m_neg,
COALESCE(HTS_TST_Other_50_f_pos.value,0) AS HTS_TST_Other_50_f_pos,
COALESCE(HTS_TST_Other_50_f_neg.value,0) AS HTS_TST_Other_50_f_neg,
COALESCE(HTS_TST_Other_50_m_pos.value,0) AS HTS_TST_Other_50_m_pos,
COALESCE(HTS_TST_Other_50_m_neg.value,0) AS HTS_TST_Other_50_m_neg,
/*HTS_TST (Facility)-VCT*/
COALESCE(VCT_0_8_f_pos.value,0) AS HTS_TST_VCT_men1_f_pos,
COALESCE(VCT_0_8_f_neg.value,0) AS HTS_TST_VCT_men1_f_neg,
COALESCE(VCT_0_8_m_pos.value,0) AS HTS_TST_VCT_men1_m_pos,
COALESCE(VCT_0_8_m_neg.value,0) AS HTS_TST_VCT_men1_m_neg,
(COALESCE(VCT_9_18_f_pos.value,0)+COALESCE(VCT_19_4_f_pos.value,0)) AS HTS_TST_VCT_1_4_f_pos,
(COALESCE(VCT_9_18_f_neg.value,0)+COALESCE(VCT_19_4_f_neg.value,0)) AS HTS_TST_VCT_1_4_f_neg,
(COALESCE(VCT_9_18_m_pos.value,0)+COALESCE(VCT_19_4_m_pos.value,0)) AS HTS_TST_VCT_1_4_m_pos,
(COALESCE(VCT_9_18_m_neg.value,0)+COALESCE(VCT_19_4_m_neg.value,0)) AS HTS_TST_VCT_1_4_m_neg,
COALESCE(VCT_5_9_f_pos.value,0) AS HTS_TST_VCT_5_9_f_pos,
COALESCE(VCT_5_9_f_neg.value,0) AS HTS_TST_VCT_5_9_f_neg,
COALESCE(VCT_5_9_m_pos.value,0) AS HTS_TST_VCT_5_9_m_pos,
COALESCE(VCT_5_9_m_neg.value,0) AS HTS_TST_VCT_5_9_m_neg,
COALESCE(VCT_10_14_f_pos.value,0) AS HTS_TST_VCT_10_14_f_pos,
COALESCE(VCT_10_14_f_neg.value,0) AS HTS_TST_VCT_10_14_f_neg,
COALESCE(VCT_10_14_m_pos.value,0) AS HTS_TST_VCT_10_14_m_pos,
COALESCE(VCT_10_14_m_neg.value,0) AS HTS_TST_VCT_10_14_m_neg,
COALESCE(VCT_15_19_f_pos.value,0) AS HTS_TST_VCT_15_19_f_pos,
COALESCE(VCT_15_19_f_neg.value,0) AS HTS_TST_VCT_15_19_f_neg,
COALESCE(VCT_15_19_m_pos.value,0) AS HTS_TST_VCT_15_19_m_pos,
COALESCE(VCT_15_19_m_neg.value,0) AS HTS_TST_VCT_15_19_m_neg,
COALESCE(VCT_20_24_f_pos.value,0) AS HTS_TST_VCT_20_24_f_pos,
COALESCE(VCT_20_24_f_neg.value,0) AS HTS_TST_VCT_20_24_f_neg,
COALESCE(VCT_20_24_m_pos.value,0) AS HTS_TST_VCT_20_24_m_pos,
COALESCE(VCT_20_24_m_neg.value,0) AS HTS_TST_VCT_20_24_m_neg,
COALESCE(VCT_25_29_f_pos.value,0) AS HTS_TST_VCT_25_29_f_pos,
COALESCE(VCT_25_29_f_neg.value,0) AS HTS_TST_VCT_25_29_f_neg,
COALESCE(VCT_25_29_m_pos.value,0) AS HTS_TST_VCT_25_29_m_pos,
COALESCE(VCT_25_29_m_neg.value,0) AS HTS_TST_VCT_25_29_m_neg,
COALESCE(VCT_30_49_f_pos.value,0) AS HTS_TST_VCT_30_34_f_pos,
COALESCE(VCT_30_49_f_neg.value,0) AS HTS_TST_VCT_30_34_f_neg,
COALESCE(VCT_30_49_m_pos.value,0) AS HTS_TST_VCT_30_34_m_pos,
COALESCE(VCT_30_49_m_neg.value,0) AS HTS_TST_VCT_30_34_m_neg,
COALESCE(VCT_35_39_f_pos.value,0) AS HTS_TST_VCT_35_39_f_pos,
COALESCE(VCT_35_39_f_neg.value,0) AS HTS_TST_VCT_35_39_f_neg,
COALESCE(VCT_35_39_m_pos.value,0) AS HTS_TST_VCT_35_39_m_pos,
COALESCE(VCT_35_39_m_neg.value,0) AS HTS_TST_VCT_35_39_m_neg,
COALESCE(VCT_40_44_f_pos.value,0) AS HTS_TST_VCT_40_44_f_pos,
COALESCE(VCT_40_44_f_neg.value,0) AS HTS_TST_VCT_40_44_f_neg,
COALESCE(VCT_40_44_m_pos.value,0) AS HTS_TST_VCT_40_44_m_pos,
COALESCE(VCT_40_44_m_neg.value,0) AS HTS_TST_VCT_40_44_m_neg,
COALESCE(VCT_45_49_f_pos.value,0) AS HTS_TST_VCT_45_49_f_pos,
COALESCE(VCT_45_49_f_neg.value,0) AS HTS_TST_VCT_45_49_f_neg,
COALESCE(VCT_45_49_m_pos.value,0) AS HTS_TST_VCT_45_49_m_pos,
COALESCE(VCT_45_49_m_neg.value,0) AS HTS_TST_VCT_45_49_m_neg,
COALESCE(VCT_50_f_pos.value,0) AS HTS_TST_VCT_50_f_pos,
COALESCE(VCT_50_f_neg.value,0) AS HTS_TST_VCT_50_f_neg,
COALESCE(VCT_50_m_pos.value,0) AS HTS_TST_VCT_50_m_pos,
COALESCE(VCT_50_m_neg.value,0) AS HTS_TST_VCT_50_m_neg,
/*Index Testing*/
/*OpenMRS*/
/*Ofered*/
'' AS placeholder75,
COALESCE(HTS_I_ofered_men1_f.value,0) AS HTS_I_ofered_men1_f,
COALESCE(HTS_I_ofered_1_4_f.value,0) AS HTS_I_ofered_1_4_f,
COALESCE(HTS_I_ofered_5_9_f.value,0) AS HTS_I_ofered_5_9_f,
COALESCE(HTS_I_ofered_10_14_f.value,0) AS HTS_I_ofered_10_14_f,
COALESCE(HTS_I_ofered_15_19_f.value,0) AS HTS_I_ofered_15_19_f,
COALESCE(HTS_I_ofered_20_24_f.value,0) AS HTS_I_ofered_20_24_f,
COALESCE(HTS_I_ofered_25_29_f.value,0) AS HTS_I_ofered_25_29_f,
COALESCE(HTS_I_ofered_30_34_f.value,0) AS HTS_I_ofered_30_34_f,
COALESCE(HTS_I_ofered_35_39_f.value,0) AS HTS_I_ofered_35_39_f,
COALESCE(HTS_I_ofered_40_44_f.value,0) AS HTS_I_ofered_40_44_f,
COALESCE(HTS_I_ofered_45_49_f.value,0) AS HTS_I_ofered_45_49_f,
COALESCE(HTS_I_ofered_50_f.value,0) AS HTS_I_ofered_50_f,
'' AS placeholder76,
COALESCE(HTS_I_ofered_men1_m.value,0) AS HTS_I_ofered_men1_m,
COALESCE(HTS_I_ofered_1_4_m.value,0) AS HTS_I_ofered_1_4_m,
COALESCE(HTS_I_ofered_5_9_m.value,0) AS HTS_I_ofered_5_9_m,
COALESCE(HTS_I_ofered_10_14_m.value,0) AS HTS_I_ofered_10_14_m,
COALESCE(HTS_I_ofered_15_19_m.value,0) AS HTS_I_ofered_15_19_m,
COALESCE(HTS_I_ofered_20_24_m.value,0) AS HTS_I_ofered_20_24_m,
COALESCE(HTS_I_ofered_25_29_m.value,0) AS HTS_I_ofered_25_29_m,
COALESCE(HTS_I_ofered_30_34_m.value,0) AS HTS_I_ofered_30_34_m,
COALESCE(HTS_I_ofered_35_39_m.value,0) AS HTS_I_ofered_35_39_m,
COALESCE(HTS_I_ofered_40_44_m.value,0) AS HTS_I_ofered_40_44_m,
COALESCE(HTS_I_ofered_45_49_m.value,0) AS HTS_I_ofered_45_49_m,
COALESCE(HTS_I_ofered_50_m.value,0) AS HTS_I_ofered_50_m,
/*Acepted*/
'' AS placeholder75,
COALESCE(HTS_I_acepted_men1_f.value,0) AS HTS_I_acepted_men1_f,
COALESCE(HTS_I_acepted_1_4_f.value,0) AS HTS_I_acepted_1_4_f,
COALESCE(HTS_I_acepted_5_9_f.value,0) AS HTS_I_acepted_5_9_f,
COALESCE(HTS_I_acepted_10_14_f.value,0) AS HTS_I_acepted_10_14_f,
COALESCE(HTS_I_acepted_15_19_f.value,0) AS HTS_I_acepted_15_19_f,
COALESCE(HTS_I_acepted_20_24_f.value,0) AS HTS_I_acepted_20_24_f,
COALESCE(HTS_I_acepted_25_29_f.value,0) AS HTS_I_acepted_25_29_f,
COALESCE(HTS_I_acepted_30_34_f.value,0) AS HTS_I_acepted_30_34_f,
COALESCE(HTS_I_acepted_35_39_f.value,0) AS HTS_I_acepted_35_39_f,
COALESCE(HTS_I_acepted_40_44_f.value,0) AS HTS_I_acepted_40_44_f,
COALESCE(HTS_I_acepted_45_49_f.value,0) AS HTS_I_acepted_45_49_f,
COALESCE(HTS_I_acepted_50_f.value,0) AS HTS_I_acepted_50_f,
'' AS placeholder76,
COALESCE(HTS_I_acepted_men1_m.value,0) AS HTS_I_acepted_men1_m,
COALESCE(HTS_I_acepted_1_4_m.value,0) AS HTS_I_acepted_1_4_m,
COALESCE(HTS_I_acepted_5_9_m.value,0) AS HTS_I_acepted_5_9_m,
COALESCE(HTS_I_acepted_10_14_m.value,0) AS HTS_I_acepted_10_14_m,
COALESCE(HTS_I_acepted_15_19_m.value,0) AS HTS_I_acepted_15_19_m,
COALESCE(HTS_I_acepted_20_24_m.value,0) AS HTS_I_acepted_20_24_m,
COALESCE(HTS_I_acepted_25_29_m.value,0) AS HTS_I_acepted_25_29_m,
COALESCE(HTS_I_acepted_30_34_m.value,0) AS HTS_I_acepted_30_34_m,
COALESCE(HTS_I_acepted_35_39_m.value,0) AS HTS_I_acepted_35_39_m,
COALESCE(HTS_I_acepted_40_44_m.value,0) AS HTS_I_acepted_40_44_m,
COALESCE(HTS_I_acepted_45_49_m.value,0) AS HTS_I_acepted_45_49_m,
COALESCE(HTS_I_acepted_50_m.value,0) AS HTS_I_acepted_50_m,
/*Elicited*/
'' AS placeholder77,
(COALESCE(cpn_index_contact_pos.value,0)+COALESCE(cpn_index_contact_neg.value,0)) AS CPN_index_contact_m,
(COALESCE(HTS_TST_Other_index_0_8_f_pos.value,0)+COALESCE(VCT_index_0_8_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_9_18_f_pos.value,0)+COALESCE(HTS_TST_Other_index_19_4_f_pos.value,0)+COALESCE(VCT_index_9_18_f_pos.value,0)+COALESCE(VCT_index_19_4_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_5_9_f_pos.value,0)+COALESCE(VCT_index_5_9_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_10_14_f_pos.value,0)+COALESCE(VCT_index_10_14_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_0_8_f_neg.value,0)+COALESCE(VCT_index_0_8_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_9_18_f_neg.value,0)+COALESCE(HTS_TST_Other_index_19_4_f_neg.value,0)+COALESCE(VCT_index_9_18_f_neg.value,0)+COALESCE(VCT_index_19_4_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_5_9_f_neg.value,0)+COALESCE(VCT_index_5_9_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_10_14_f_neg.value,0)+COALESCE(VCT_index_10_14_f_neg.value,0)
) AS Index_contact_men15_f,
(COALESCE(HTS_TST_Other_index_0_8_m_pos.value,0)+COALESCE(VCT_index_0_8_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_9_18_m_pos.value,0)+COALESCE(HTS_TST_Other_index_19_4_m_pos.value,0)+COALESCE(VCT_index_9_18_m_pos.value,0)+COALESCE(VCT_index_19_4_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_5_9_m_pos.value,0)+COALESCE(VCT_index_5_9_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_10_14_m_pos.value,0)+COALESCE(VCT_index_10_14_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_0_8_m_neg.value,0)+COALESCE(VCT_index_0_8_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_9_18_m_neg.value,0)+COALESCE(HTS_TST_Other_index_19_4_m_neg.value,0)+COALESCE(VCT_index_9_18_m_neg.value,0)+COALESCE(VCT_index_19_4_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_5_9_m_neg.value,0)+COALESCE(VCT_index_5_9_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_10_14_m_neg.value,0)+COALESCE(VCT_index_10_14_m_neg.value,0)
) AS Index_contact_men15_m,
(COALESCE(HTS_TST_Other_index_15_19_f_pos.value,0)+COALESCE(VCT_index_15_19_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_20_24_f_pos.value,0)+COALESCE(VCT_index_20_24_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_25_29_f_pos.value,0)+COALESCE(VCT_index_25_29_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_30_49_f_pos.value,0)+COALESCE(VCT_index_30_49_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_50_f_pos.value,0)+COALESCE(VCT_index_50_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_15_19_f_neg.value,0)+COALESCE(VCT_index_15_19_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_20_24_f_neg.value,0)+COALESCE(VCT_index_20_24_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_25_29_f_neg.value,0)+COALESCE(VCT_index_25_29_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_30_49_f_neg.value,0)+COALESCE(VCT_index_30_49_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_35_39_f_neg.value,0)+COALESCE(VCT_index_35_39_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_40_44_f_neg.value,0)+COALESCE(VCT_index_40_44_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_45_49_f_neg.value,0)+COALESCE(VCT_index_45_49_f_neg.value,0)+
COALESCE(HTS_TST_Other_index_35_39_f_pos.value,0)+COALESCE(VCT_index_35_39_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_40_44_f_pos.value,0)+COALESCE(VCT_index_40_44_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_45_49_f_pos.value,0)+COALESCE(VCT_index_45_49_f_pos.value,0)+
COALESCE(HTS_TST_Other_index_50_f_neg.value,0)+COALESCE(VCT_index_50_f_neg.value,0)
) AS Index_contact_mai15_f,
(COALESCE(HTS_TST_Other_index_15_19_m_pos.value,0)+COALESCE(VCT_index_15_19_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_20_24_m_pos.value,0)+COALESCE(VCT_index_20_24_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_25_29_m_pos.value,0)+COALESCE(VCT_index_25_29_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_30_49_m_pos.value,0)+COALESCE(VCT_index_30_49_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_50_m_pos.value,0)+COALESCE(VCT_index_50_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_15_19_m_neg.value,0)+COALESCE(VCT_index_15_19_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_20_24_m_neg.value,0)+COALESCE(VCT_index_20_24_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_25_29_m_neg.value,0)+COALESCE(VCT_index_25_29_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_30_49_m_neg.value,0)+COALESCE(VCT_index_30_49_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_35_39_m_neg.value,0)+COALESCE(VCT_index_35_39_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_40_44_m_neg.value,0)+COALESCE(VCT_index_40_44_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_45_49_m_neg.value,0)+COALESCE(VCT_index_45_49_m_neg.value,0)+
COALESCE(HTS_TST_Other_index_35_39_m_pos.value,0)+COALESCE(VCT_index_35_39_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_40_44_m_pos.value,0)+COALESCE(VCT_index_40_44_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_45_49_m_pos.value,0)+COALESCE(VCT_index_45_49_m_pos.value,0)+
COALESCE(HTS_TST_Other_index_50_m_neg.value,0)+COALESCE(VCT_index_50_m_neg.value,0)
) AS Index_contact_mai15_m,
/*Contacts*/
COALESCE(cpn_index_contact_pos.value,0) AS CPN_index_contact_m_pos_unk,
(COALESCE(HTS_TST_Other_index_0_8_f_pos.value,0)+COALESCE(VCT_index_0_8_f_pos.value,0)) AS HTS_TST_Index_men1_f_pos,
(COALESCE(HTS_TST_Other_index_0_8_m_pos.value,0)+COALESCE(VCT_index_0_8_m_pos.value,0)) AS HTS_TST_Index_men1_m_pos,
(COALESCE(HTS_TST_Other_index_9_18_f_pos.value,0)+COALESCE(HTS_TST_Other_index_19_4_f_pos.value,0)+COALESCE(VCT_index_9_18_f_pos.value,0)+COALESCE(VCT_index_19_4_f_pos.value,0)) AS HTS_TST_Index_1_4_f_pos,
(COALESCE(HTS_TST_Other_index_9_18_m_pos.value,0)+COALESCE(HTS_TST_Other_index_19_4_m_pos.value,0)+COALESCE(VCT_index_9_18_m_pos.value,0)+COALESCE(VCT_index_19_4_m_pos.value,0)) AS HTS_TST_Index_1_4_m_pos,
(COALESCE(HTS_TST_Other_index_5_9_f_pos.value,0)+COALESCE(VCT_index_5_9_f_pos.value,0)) AS HTS_TST_Index_5_9_f_pos,
(COALESCE(HTS_TST_Other_index_5_9_m_pos.value,0)+COALESCE(VCT_index_5_9_m_pos.value,0)) AS HTS_TST_Index_5_9_m_pos,
(COALESCE(HTS_TST_Other_index_10_14_f_pos.value,0)+COALESCE(VCT_index_10_14_f_pos.value,0)) AS HTS_TST_Index_10_14_f_pos,
(COALESCE(HTS_TST_Other_index_10_14_m_pos.value,0)+COALESCE(VCT_index_10_14_m_pos.value,0)) AS HTS_TST_Index_10_14_m_pos,
(COALESCE(HTS_TST_Other_index_15_19_f_pos.value,0)+COALESCE(VCT_index_15_19_f_pos.value,0)) AS HTS_TST_Index_15_19_f_pos,
(COALESCE(HTS_TST_Other_index_15_19_m_pos.value,0)+COALESCE(VCT_index_15_19_m_pos.value,0)) AS HTS_TST_Index_15_19_m_pos,
(COALESCE(HTS_TST_Other_index_20_24_f_pos.value,0)+COALESCE(VCT_index_20_24_f_pos.value,0)) AS HTS_TST_Index_20_24_f_pos,
(COALESCE(HTS_TST_Other_index_20_24_m_pos.value,0)+COALESCE(VCT_index_20_24_m_pos.value,0)) AS HTS_TST_Index_20_24_m_pos,
(COALESCE(HTS_TST_Other_index_25_29_f_pos.value,0)+COALESCE(VCT_index_25_29_f_pos.value,0)) AS HTS_TST_Index_25_29_f_pos,
(COALESCE(HTS_TST_Other_index_25_29_m_pos.value,0)+COALESCE(VCT_index_25_29_m_pos.value,0)) AS HTS_TST_Index_25_29_m_pos,
(COALESCE(HTS_TST_Other_index_30_49_f_pos.value,0)+COALESCE(VCT_index_30_49_f_pos.value,0)) AS HTS_TST_Index_30_34_f_pos,
(COALESCE(HTS_TST_Other_index_30_49_m_pos.value,0)+COALESCE(VCT_index_30_49_m_pos.value,0)) AS HTS_TST_Index_30_34_m_pos,
(COALESCE(HTS_TST_Other_index_35_39_f_pos.value,0)+COALESCE(VCT_index_35_39_f_pos.value,0)) AS HTS_TST_Index_35_39_f_pos,
(COALESCE(HTS_TST_Other_index_35_39_m_pos.value,0)+COALESCE(VCT_index_35_39_m_pos.value,0)) AS HTS_TST_Index_35_39_m_pos,
(COALESCE(HTS_TST_Other_index_40_44_f_pos.value,0)+COALESCE(VCT_index_40_44_f_pos.value,0)) AS HTS_TST_Index_40_44_f_pos,
(COALESCE(HTS_TST_Other_index_40_44_m_pos.value,0)+COALESCE(VCT_index_40_44_m_pos.value,0)) AS HTS_TST_Index_40_44_m_pos,
(COALESCE(HTS_TST_Other_index_45_49_f_pos.value,0)+COALESCE(VCT_index_45_49_f_pos.value,0)) AS HTS_TST_Index_45_49_f_pos,
(COALESCE(HTS_TST_Other_index_45_49_m_pos.value,0)+COALESCE(VCT_index_45_49_m_pos.value,0)) AS HTS_TST_Index_45_49_m_pos,
(COALESCE(HTS_TST_Other_index_50_f_pos.value,0)+COALESCE(VCT_index_50_f_pos.value,0)) AS HTS_TST_Index_50_f_pos,
(COALESCE(HTS_TST_Other_index_50_m_pos.value,0)+COALESCE(VCT_index_50_m_pos.value,0)) AS HTS_TST_Index_50_m_pos,
COALESCE(cpn_index_contact_neg.value,0) AS CPN_index_contact_m_neg_unk,
(COALESCE(HTS_TST_Other_index_0_8_f_neg.value,0)+COALESCE(VCT_index_0_8_f_neg.value,0)) AS HTS_TST_Index_men1_f_neg,
(COALESCE(HTS_TST_Other_index_0_8_m_neg.value,0)+COALESCE(VCT_index_0_8_m_neg.value,0)) AS HTS_TST_Index_men1_m_neg,
(COALESCE(HTS_TST_Other_index_9_18_f_neg.value,0)+COALESCE(HTS_TST_Other_index_19_4_f_neg.value,0)+COALESCE(VCT_index_9_18_f_neg.value,0)+COALESCE(VCT_index_19_4_f_neg.value,0)) AS HTS_TST_Index_1_4_f_neg,
(COALESCE(HTS_TST_Other_index_9_18_m_neg.value,0)+COALESCE(HTS_TST_Other_index_19_4_m_neg.value,0)+COALESCE(VCT_index_9_18_m_neg.value,0)+COALESCE(VCT_index_19_4_m_neg.value,0)) AS HTS_TST_Index_1_4_m_neg,
(COALESCE(HTS_TST_Other_index_5_9_f_neg.value,0)+COALESCE(VCT_index_5_9_f_neg.value,0)) AS HTS_TST_Index_5_9_f_neg,
(COALESCE(HTS_TST_Other_index_5_9_m_neg.value,0)+COALESCE(VCT_index_5_9_m_neg.value,0)) AS HTS_TST_Index_5_9_m_neg,
(COALESCE(HTS_TST_Other_index_10_14_f_neg.value,0)+COALESCE(VCT_index_10_14_f_neg.value,0)) AS HTS_TST_Index_10_14_f_neg,
(COALESCE(HTS_TST_Other_index_10_14_m_neg.value,0)+COALESCE(VCT_index_10_14_m_neg.value,0)) AS HTS_TST_Index_10_14_m_neg,
(COALESCE(HTS_TST_Other_index_15_19_f_neg.value,0)+COALESCE(VCT_index_15_19_f_neg.value,0)) AS HTS_TST_Index_15_19_f_neg,
(COALESCE(HTS_TST_Other_index_15_19_m_neg.value,0)+COALESCE(VCT_index_15_19_m_neg.value,0)) AS HTS_TST_Index_15_19_m_neg,
(COALESCE(HTS_TST_Other_index_20_24_f_neg.value,0)+COALESCE(VCT_index_20_24_f_neg.value,0)) AS HTS_TST_Index_20_24_f_neg,
(COALESCE(HTS_TST_Other_index_20_24_m_neg.value,0)+COALESCE(VCT_index_20_24_m_neg.value,0)) AS HTS_TST_Index_20_24_m_neg,
(COALESCE(HTS_TST_Other_index_25_29_f_neg.value,0)+COALESCE(VCT_index_25_29_f_neg.value,0)) AS HTS_TST_Index_25_29_f_neg,
(COALESCE(HTS_TST_Other_index_25_29_m_neg.value,0)+COALESCE(VCT_index_25_29_m_neg.value,0)) AS HTS_TST_Index_25_29_m_neg,
(COALESCE(HTS_TST_Other_index_30_49_f_neg.value,0)+COALESCE(VCT_index_30_49_f_neg.value,0)) AS HTS_TST_Index_30_34_f_neg,