-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMichiganOverview_ProbableCases.csv
We can't make this file beautiful and searchable because it's too large.
1525 lines (1525 loc) · 717 KB
/
MichiganOverview_ProbableCases.csv
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
CheckedEST,Link,Date,CP_Alcona,CP_Alger,CP_Allegan,CP_Alpena,CP_Antrim,CP_Arenac,CP_Baraga,CP_Barry,CP_Bay,CP_Benzie,CP_Berrien,CP_Branch,CP_Calhoun,CP_Cass,CP_Charlevoix,CP_Cheboygan,CP_Chippewa,CP_Clare,CP_Clinton,CP_Crawford,CP_Delta,CP_Dickinson,CP_Eaton,CP_Emmet,CP_Genesee,CP_Gladwin,CP_Gogebic,CP_GrandTraverse,CP_Gratiot,CP_Hillsdale,CP_Houghton,CP_Huron,CP_Ingham,CP_Ionia,CP_Iosco,CP_Iron,CP_Isabella,CP_Jackson,CP_Kalamazoo,CP_Kalkaska,CP_Kent,CP_Keweenaw,CP_Lake,CP_Lapeer,CP_Leelanau,CP_Lenawee,CP_Livingston,CP_Luce,CP_Mackinac,CP_Macomb,CP_Manistee,CP_Marquette,CP_Mason,CP_Mecosta,CP_Menominee,CP_Midland,CP_Missaukee,CP_Monroe,CP_Montcalm,CP_Montmorency,CP_Muskegon,CP_Newaygo,CP_Oakland,CP_Oceana,CP_Ogemaw,CP_Ontonagon,CP_Osceola,CP_Oscoda,CP_Otsego,CP_Ottawa,CP_PresqueIsle,CP_Roscommon,CP_Saginaw,CP_Sanilac,CP_Schoolcraft,CP_Shiawassee,CP_StClair,CP_StJoseph,CP_Tuscola,CP_VanBuren,CP_Washtenaw,CP_Wayne,CP_Wexford,CP_MDOC,CP_FCI,CP_OutState,CP_NR,CP_TOTAL,CP_Detroit,CP_Notes,CP_Male,CP_Female,CP_SexNR,CP_0_9,CP_10_19,CP_0_19,CP_20_29,CP_30_39,CP_40_49,CP_50_59,CP_60_69,CP_70_79,CP_80_plus,CP_AgeNR,CP_Native,CP_Asian,CP_Black,CP_White,CP_Many,CP_Other,CP_RaceNR
,,2020-03-01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-2",,,,,,,,,,,,,,,,,,,,,
,,2020-03-02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-3",,,,,,,,,,,,,,,,,,,,,
,,2020-03-03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-4",,,,,,,,,,,,,,,,,,,,,
,,2020-03-04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-5",,,,,,,,,,,,,,,,,,,,,
,,2020-03-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-6",,,,,,,,,,,,,,,,,,,,,
,,2020-03-06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-7",,,,,,,,,,,,,,,,,,,,,
,,2020-03-07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-8",,,,,,,,,,,,,,,,,,,,,
,,2020-03-08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-9",,,,,,,,,,,,,,,,,,,,,
,,2020-03-09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-10",,,,,,,,,,,,,,,,,,,,,
,,2020-03-10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-11",,,,,,,,,,,,,,,,,,,,,
,,2020-03-11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-12",,,,,,,,,,,,,,,,,,,,,
,,2020-03-12,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-03-13,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-03-14,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-03-15,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-03-16,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,22,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-03-17,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-03-18,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,40,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-03-19,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,55,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-03-20,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,42,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,69,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-03-21,0,0,0,0,1,0,0,0,1,0,12,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,2,1,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,49,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,85,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-03-22,0,0,0,0,1,0,0,0,2,0,16,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,2,1,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,52,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,96,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-03-23,0,0,0,0,1,0,0,0,2,0,21,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,3,1,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,69,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,125,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-03-24,0,0,0,0,1,0,0,0,2,0,25,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,3,1,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,86,0,1,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,148,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-03-25,0,0,0,0,1,0,0,0,2,0,26,0,1,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,3,1,0,0,0,0,0,0,0,6,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,100,0,1,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,12,0,0,0,0,0,0,170,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-03-26,0,0,0,0,1,0,0,1,2,0,29,0,1,2,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,3,1,0,0,0,0,0,0,0,6,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,107,0,1,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,13,0,0,0,0,0,0,185,0,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-03-27,0,0,0,0,1,0,0,1,2,0,32,0,1,2,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,4,1,0,0,0,0,0,0,0,7,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,121,0,1,0,0,0,0,2,0,0,0,0,0,0,6,0,0,1,16,1,0,0,0,0,0,212,1,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-03-28,0,0,0,0,1,0,0,1,2,0,34,0,1,2,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,4,2,0,1,0,0,0,0,0,10,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,137,0,1,0,0,0,0,2,0,0,0,0,0,0,6,0,0,1,17,1,0,0,0,0,0,236,1,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-03-29,0,0,0,0,1,0,0,1,2,0,34,0,1,2,0,1,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,0,4,2,0,2,0,0,0,0,0,12,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,149,0,1,0,0,0,0,2,0,0,0,0,0,0,6,0,0,1,20,1,0,0,0,0,0,259,1,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-03-30,0,0,0,0,1,0,0,1,2,0,36,0,2,3,0,1,0,0,3,0,0,0,1,0,5,0,0,0,0,0,0,0,4,0,0,0,0,5,2,0,3,0,0,2,0,1,14,0,0,2,0,0,1,0,0,5,0,0,0,0,0,0,165,0,1,0,0,0,0,3,0,0,0,0,0,0,7,0,0,1,25,2,0,0,0,0,0,298,2,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-03-31,0,0,0,0,1,0,0,2,2,0,43,0,2,4,0,1,0,0,3,0,0,0,1,0,5,0,0,0,0,0,0,0,5,0,0,0,0,6,2,0,4,0,0,3,0,1,14,0,0,2,0,0,1,0,0,5,0,0,1,0,0,0,173,0,1,0,0,0,0,3,0,0,0,0,0,1,8,0,0,1,26,4,0,0,0,0,0,325,4,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-01,0,0,0,0,1,0,0,2,2,0,47,0,3,4,0,1,0,0,3,0,0,0,1,0,6,0,0,0,0,0,0,0,6,0,1,0,0,7,3,0,5,0,0,3,0,2,16,0,0,2,0,0,1,0,0,5,0,0,1,0,0,0,197,0,1,0,0,0,0,5,0,0,0,0,0,1,11,0,0,4,30,10,0,0,0,0,0,381,10,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-02,0,0,0,0,1,0,0,2,3,0,50,0,3,4,0,1,0,0,3,0,0,0,1,1,8,0,0,0,0,0,0,1,6,0,1,0,1,7,4,0,5,0,0,3,0,2,18,0,0,2,0,0,1,0,0,5,0,0,1,0,0,0,208,0,1,0,0,0,0,6,0,0,0,0,0,1,11,0,0,4,34,13,0,0,0,0,0,412,13,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-03,0,0,1,0,1,0,0,2,3,0,56,0,3,4,0,1,0,0,3,0,0,0,1,1,9,0,0,0,0,0,0,1,6,0,1,0,2,8,5,0,5,0,0,3,0,2,21,0,0,2,0,0,1,0,0,5,0,0,1,0,0,0,222,0,1,0,0,0,0,9,0,0,0,0,0,2,11,0,0,4,37,14,0,0,0,0,0,448,14,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-04,0,0,1,0,1,0,0,2,3,0,57,0,3,4,0,1,0,0,3,0,0,0,1,1,10,0,0,0,0,1,0,1,6,0,1,0,4,9,5,0,6,0,0,4,0,3,24,0,0,2,1,0,1,0,0,5,0,0,1,0,0,0,234,0,1,0,0,0,1,9,0,0,0,0,0,2,11,0,0,4,43,14,1,0,0,0,0,481,14,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-05,0,0,1,0,1,0,0,2,3,0,60,0,3,4,0,1,0,0,3,0,0,0,1,1,11,0,0,0,0,1,0,1,7,0,1,0,5,9,6,0,6,0,0,4,0,3,26,0,0,2,1,0,1,0,0,6,0,0,1,0,0,0,243,0,1,0,1,0,1,11,0,0,0,0,0,2,15,0,0,4,48,14,1,0,0,0,0,512,14,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-06,0,0,1,0,1,0,0,2,4,0,61,0,3,4,0,1,0,0,4,0,1,0,1,1,14,0,0,0,0,1,0,1,7,0,1,0,5,11,7,1,9,0,0,4,0,3,27,0,0,3,1,0,1,0,0,8,0,0,1,0,0,0,259,0,1,0,2,0,2,12,0,0,0,0,0,2,15,0,0,6,53,17,1,0,0,0,0,559,17,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-07,0,0,2,0,1,0,0,2,4,0,66,1,5,4,0,1,0,0,4,0,1,0,3,1,16,0,0,0,0,1,0,1,9,0,1,0,7,11,8,1,11,0,0,4,0,3,32,0,0,5,1,0,1,1,0,11,0,0,1,0,0,0,279,0,1,0,2,0,2,16,0,0,0,0,0,2,18,0,0,8,60,18,1,0,0,0,0,627,18,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-08,0,0,3,0,1,0,0,2,4,0,66,2,8,4,0,1,0,0,4,1,1,0,3,1,18,0,0,1,1,1,0,2,9,0,1,0,8,11,9,1,13,0,0,5,0,3,34,0,0,5,1,0,1,1,0,11,0,0,1,0,0,0,293,0,1,0,2,0,2,19,0,0,0,0,0,3,20,0,1,8,65,21,1,0,0,0,0,674,21,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-09,0,0,5,0,1,0,0,2,5,0,76,2,9,4,0,1,0,0,4,1,1,0,3,1,21,0,0,1,1,1,0,3,9,0,1,0,10,11,9,1,20,0,0,5,0,3,37,0,0,5,1,0,1,1,0,11,0,0,1,0,0,2,307,0,1,0,2,0,3,22,0,0,0,0,0,3,21,0,1,8,72,21,1,0,0,0,0,732,21,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-10,0,0,5,0,1,0,0,2,5,0,79,2,9,4,0,1,0,0,4,2,1,0,3,4,22,0,0,1,1,1,0,4,9,0,1,0,11,11,10,2,21,0,1,6,0,6,38,0,0,5,1,0,1,1,0,11,0,0,1,0,0,2,322,0,1,0,2,0,3,25,0,0,0,1,0,4,25,0,1,9,77,23,1,0,0,0,0,783,23,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-11,0,0,7,0,1,0,0,2,5,0,82,2,10,7,0,3,0,0,5,2,1,0,3,4,22,0,0,1,1,1,0,5,9,0,1,0,12,12,10,2,27,0,1,6,0,8,40,0,0,5,1,0,1,1,0,12,0,1,1,0,0,2,331,0,1,0,2,0,3,26,0,0,0,1,0,5,26,0,2,9,82,27,1,0,0,0,0,832,27,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-12,0,0,12,0,1,0,0,3,7,0,84,3,10,7,0,3,0,0,5,2,1,0,5,4,25,0,0,1,1,1,0,5,9,0,2,0,12,12,12,5,31,0,1,7,0,9,40,0,0,5,1,0,1,1,0,13,0,2,1,0,0,2,339,0,1,0,2,0,4,26,0,1,0,1,0,6,28,0,2,9,82,27,2,0,0,0,0,876,27,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-13,0,0,15,0,1,0,0,3,8,0,87,3,11,7,0,4,0,0,5,2,1,0,5,4,27,0,0,1,1,1,0,6,9,0,2,0,13,13,13,7,36,0,1,7,0,10,40,0,0,5,1,0,1,1,0,14,0,2,1,0,0,2,349,0,1,0,2,0,4,31,0,1,0,1,0,7,33,0,2,9,82,27,2,0,0,0,0,921,27,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-14,1,0,17,0,1,0,0,3,8,0,91,3,12,9,0,4,1,0,5,2,1,0,5,4,30,0,0,1,1,2,0,6,9,0,2,0,13,13,13,7,41,0,1,8,0,11,41,0,0,5,1,0,1,1,0,15,0,3,1,0,0,2,369,0,1,0,2,0,6,32,0,1,0,1,0,7,33,0,2,10,86,27,2,0,0,0,0,974,27,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-15,1,0,17,0,1,2,0,3,9,0,93,3,14,9,0,4,1,0,5,2,1,0,5,4,30,0,0,1,1,2,0,6,10,1,2,0,13,13,14,8,45,0,1,8,0,13,42,0,0,5,1,0,1,1,0,16,0,3,1,0,0,2,382,0,1,0,2,0,7,32,0,1,1,1,0,10,33,0,2,11,91,28,2,0,0,0,0,1018,28,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-16,1,0,17,2,1,2,0,4,9,0,96,3,14,9,0,4,1,0,5,2,1,0,6,4,31,0,0,1,1,2,0,6,11,1,2,0,13,13,16,8,55,0,1,8,0,14,44,0,0,6,1,0,1,1,0,16,0,3,1,0,0,2,426,0,1,0,2,0,7,32,0,1,1,1,0,11,33,0,2,11,91,30,2,0,0,0,0,1090,30,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-17,1,0,17,2,1,2,0,4,9,0,98,3,14,9,0,4,1,0,5,2,1,0,6,4,34,0,0,1,1,2,0,6,11,2,2,0,13,14,16,8,68,0,1,8,0,14,44,0,0,6,1,0,1,1,0,17,0,3,1,0,0,2,444,0,1,0,2,0,8,32,0,1,1,1,0,11,33,0,2,12,92,33,2,0,0,0,0,1135,33,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-18,1,0,17,2,1,2,0,4,9,0,98,3,16,9,1,4,1,0,5,2,1,0,9,4,35,0,0,1,1,2,0,6,12,2,2,0,14,14,16,9,71,0,1,8,0,16,44,0,0,6,1,0,1,3,0,19,3,3,1,0,0,2,451,0,1,0,2,0,11,32,0,1,1,1,0,11,33,0,2,12,94,35,2,0,0,0,0,1171,35,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-19,2,0,17,2,1,3,0,5,12,0,98,3,17,9,1,4,1,0,5,2,1,0,11,4,35,0,0,1,1,2,0,6,13,2,2,0,14,15,16,9,74,0,1,8,0,16,45,0,0,6,1,0,1,3,0,20,4,3,1,0,0,2,453,0,1,0,2,0,11,32,0,1,1,1,0,11,33,0,2,13,96,35,2,0,0,0,0,1193,35,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-20,2,0,18,4,1,3,0,6,13,0,99,3,18,9,1,4,1,0,5,2,1,0,11,4,45,0,0,1,1,2,0,6,14,2,3,0,14,15,18,10,78,0,1,8,0,16,48,0,0,6,1,0,1,3,0,21,4,3,1,0,0,2,473,0,1,0,2,0,13,32,0,1,1,1,0,11,35,0,2,13,100,35,2,0,0,0,0,1251,35,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-21,2,0,18,4,1,3,0,6,15,0,100,4,19,9,1,5,1,0,5,2,1,0,14,4,52,0,0,1,1,2,0,6,15,2,3,0,15,16,18,10,84,0,1,8,0,16,49,0,0,6,1,0,1,3,0,21,4,7,1,0,0,2,486,0,1,0,2,0,13,32,0,2,2,1,0,11,37,0,2,13,102,38,2,0,0,0,0,1303,38,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-22,2,0,18,5,1,3,0,6,17,0,100,4,20,9,1,5,1,0,5,4,1,0,14,4,53,0,0,1,1,2,0,6,16,4,3,0,15,16,19,10,87,0,1,8,0,20,49,0,0,9,1,0,1,3,0,21,4,10,1,0,0,2,507,0,1,0,2,0,14,32,0,2,2,1,0,11,40,0,2,13,102,45,2,0,0,0,0,1359,45,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-23,2,0,19,5,1,3,0,6,17,0,100,5,23,9,1,5,1,0,5,4,1,0,14,4,59,0,0,1,1,2,0,6,17,4,4,0,15,17,22,10,95,0,1,8,0,20,49,0,0,14,1,0,3,3,0,23,4,13,1,0,0,2,544,0,1,0,2,0,17,32,0,2,2,1,0,12,42,0,2,13,105,65,2,0,0,0,0,1462,65,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-24,3,0,19,7,1,3,0,7,19,0,102,5,23,9,1,5,1,0,5,4,1,0,14,4,71,0,0,1,1,2,0,6,18,4,9,0,15,18,27,10,99,0,1,9,0,20,49,0,0,23,1,0,3,3,0,24,4,13,1,0,0,2,576,4,1,0,2,0,17,32,0,2,5,1,0,12,43,0,2,13,108,87,2,0,0,0,0,1574,87,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-25,3,0,19,7,1,3,0,9,20,0,102,5,23,9,1,5,1,0,6,4,1,0,14,4,81,0,0,1,1,2,0,6,18,4,9,0,15,18,27,10,105,0,1,10,0,22,49,0,0,24,1,0,3,3,0,26,4,15,1,0,0,2,593,4,1,0,2,0,17,32,0,2,5,1,0,12,43,0,2,13,108,89,2,0,0,0,0,1621,89,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-26,3,0,19,7,1,4,0,10,20,0,102,5,23,9,1,5,1,0,6,4,1,0,14,4,84,0,0,1,1,2,0,6,18,4,10,0,15,18,27,10,112,0,1,10,0,22,51,0,0,25,1,0,3,3,0,27,4,15,1,0,0,2,611,4,4,0,2,0,17,33,0,2,6,1,0,12,43,1,2,13,109,91,2,0,0,0,0,1665,91,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-13 ",,,,,,,,,,,,,,,,,,,,,
,,2020-04-27,3,0,19,7,1,4,0,10,20,0,102,5,25,9,1,5,1,0,6,4,1,0,14,4,89,0,0,1,1,2,0,6,18,4,11,0,15,18,31,10,120,0,1,10,0,23,52,0,0,31,1,0,3,3,0,27,4,16,1,0,0,2,631,4,4,0,2,0,17,34,0,2,6,1,0,12,43,1,2,13,111,97,2,0,0,0,0,1723,97,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-14",,,,,,,,,,,,,,,,,,,,,
,,2020-04-28,3,0,20,7,1,4,0,10,21,0,102,5,26,9,1,5,1,0,6,4,1,0,14,4,99,0,0,1,1,2,0,6,19,4,11,0,15,18,33,10,127,0,1,10,0,25,54,0,0,35,1,0,3,3,0,28,5,17,1,0,0,2,662,4,4,0,2,0,17,34,0,2,7,1,0,12,43,1,2,13,111,103,2,0,0,0,0,1795,103,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-15",,,,,,,,,,,,,,,,,,,,,
,,2020-04-29,3,0,20,7,1,4,0,10,23,0,104,5,26,9,1,5,1,0,6,4,1,0,15,4,107,0,0,1,1,2,0,6,19,5,11,0,15,19,34,10,134,0,1,10,0,25,55,0,0,41,1,0,3,3,0,28,5,19,1,0,0,2,695,4,4,0,2,0,17,34,0,2,7,1,0,12,43,1,2,14,112,108,2,0,0,0,0,1867,108,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-16",,,,,,,,,,,,,,,,,,,,,
,,2020-04-30,3,0,22,7,1,4,0,10,23,0,104,5,26,9,1,5,1,0,10,4,1,0,17,4,123,0,0,1,2,2,0,7,20,6,11,0,15,20,36,10,143,0,1,10,0,26,56,0,0,43,1,0,3,3,0,28,6,20,2,0,0,2,732,4,4,0,2,0,17,35,0,2,8,1,0,13,43,1,2,14,115,128,2,0,0,0,0,1977,128,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-17",,,,,,,,,,,,,,,,,,,,,
,,2020-05-01,3,0,24,7,1,4,0,11,26,0,106,5,27,9,1,5,1,0,10,4,1,0,17,4,126,0,0,1,2,2,0,7,20,6,11,0,15,20,36,11,149,0,1,10,0,26,58,0,0,47,1,0,3,3,0,28,6,22,2,0,0,2,763,4,4,0,2,0,17,37,0,2,8,1,0,14,44,1,2,14,116,132,2,0,0,0,0,2044,132,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-18",,,,,,,,,,,,,,,,,,,,,
,,2020-05-02,3,0,25,7,1,4,0,11,26,0,106,5,28,9,1,5,1,0,10,4,1,0,17,4,131,0,0,1,2,2,0,7,20,7,11,0,15,20,37,11,149,0,1,10,0,26,59,0,0,50,1,0,3,3,0,28,6,22,2,0,0,2,772,4,4,0,2,1,17,37,0,2,9,1,0,14,44,1,2,14,117,152,2,0,0,0,0,2089,152,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-19",,,,,,,,,,,,,,,,,,,,,
,,2020-05-03,3,0,25,7,1,4,0,13,26,0,106,5,29,9,1,5,1,0,11,4,1,0,18,4,133,0,0,1,2,2,0,7,20,8,11,0,15,21,37,11,151,0,1,10,0,26,59,0,0,50,1,0,3,3,0,28,6,23,2,0,0,2,779,4,4,0,2,1,17,38,0,2,10,1,0,14,44,1,2,16,117,152,2,0,0,0,0,2112,152,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-20",,,,,,,,,,,,,,,,,,,,,
,,2020-05-04,3,0,26,7,1,4,0,13,28,0,107,5,29,11,1,5,1,0,13,4,1,0,19,4,141,0,0,1,2,2,0,7,21,8,11,0,15,21,37,11,156,0,1,10,0,26,60,0,0,51,1,0,3,3,0,28,6,24,2,0,0,3,827,4,4,0,2,1,18,39,0,2,10,1,0,15,45,1,2,16,120,177,2,0,0,0,0,2219,177,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-21",,,,,,,,,,,,,,,,,,,,,
,,2020-05-05,3,0,27,7,1,4,0,13,29,0,107,5,29,11,1,5,1,0,13,4,1,0,19,4,154,0,0,1,2,2,0,7,21,9,11,0,15,21,39,11,161,0,1,10,0,29,60,0,0,57,1,0,3,3,0,28,6,25,2,0,0,3,867,4,4,0,2,1,18,39,0,2,10,1,0,15,47,1,2,16,120,200,2,0,0,0,0,2317,200,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-22",,,,,,,,,,,,,,,,,,,,,
,,2020-05-06,3,0,27,7,1,4,0,13,29,0,109,5,29,11,1,5,1,0,13,4,1,0,22,4,163,0,0,1,3,2,0,7,22,9,11,0,15,21,39,11,167,0,1,10,0,29,62,0,0,59,1,0,3,3,0,28,6,26,2,0,0,3,905,4,4,0,2,1,18,40,0,2,10,1,0,15,47,1,2,17,120,213,2,0,0,0,0,2397,213,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-23",,,,,,,,,,,,,,,,,,,,,
,,2020-05-07,3,0,27,7,1,4,0,13,29,0,110,5,31,11,1,5,1,0,15,4,1,0,23,4,178,0,0,1,3,2,0,7,23,10,12,0,15,21,40,11,170,0,1,10,0,29,65,0,0,63,1,0,3,3,0,29,6,26,2,0,0,3,950,5,5,0,2,2,18,41,0,2,11,1,0,16,48,1,2,17,120,228,2,0,0,0,0,2500,228,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-24",,,,,,,,,,,,,,,,,,,,,
,,2020-05-08,3,0,27,7,1,4,0,13,29,0,116,5,31,11,1,5,1,0,16,4,1,0,24,4,194,0,0,1,3,2,0,7,25,10,12,0,15,21,41,11,175,0,1,10,0,30,69,0,0,67,1,0,3,3,0,29,6,26,3,0,0,3,1000,6,5,0,2,2,18,42,0,2,11,1,0,16,50,1,2,17,122,241,2,0,0,0,0,2611,241,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-25",,,,,,,,,,,,,,,,,,,,,
,,2020-05-09,3,0,27,7,1,4,0,13,29,0,117,5,31,11,1,5,1,0,16,4,1,0,25,4,209,0,0,1,4,2,0,7,27,10,12,0,15,21,41,11,180,0,1,10,0,30,72,0,0,74,1,0,3,3,0,30,6,26,3,0,0,3,1030,6,5,0,2,2,18,43,0,2,12,1,0,16,51,1,2,17,123,247,2,0,0,0,0,2687,247,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-26",,,,,,,,,,,,,,,,,,,,,
,,2020-05-10,3,0,29,7,1,4,0,13,29,0,117,5,31,11,1,5,1,0,16,4,1,0,25,4,214,0,0,1,4,2,0,7,29,10,12,0,15,21,41,11,186,0,1,10,0,30,72,0,0,76,1,0,3,3,0,31,6,29,3,0,0,3,1043,8,5,0,2,2,18,44,0,2,14,1,0,16,52,2,2,17,124,247,2,0,0,0,0,2729,247,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-27",,,,,,,,,,,,,,,,,,,,,
,,2020-05-11,3,0,29,7,1,4,0,13,31,0,118,6,33,11,1,5,1,0,16,4,1,0,27,4,228,0,0,1,4,3,0,7,31,10,12,0,15,21,41,11,192,0,1,11,0,32,72,0,0,79,1,0,4,3,0,32,6,29,3,0,1,3,1120,8,5,0,2,2,18,48,0,2,14,1,0,16,53,2,2,17,130,258,2,10,0,0,0,2878,258,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-28",,,,,,,,,,,,,,,,,,,,,
,,2020-05-12,3,0,29,7,1,4,0,13,31,0,118,6,33,11,1,5,1,0,17,4,2,0,28,4,248,0,0,1,4,3,0,7,31,10,12,0,15,21,41,11,196,0,1,12,0,32,73,0,0,82,1,0,4,3,0,32,6,31,3,0,2,3,1187,8,5,0,2,2,18,51,0,2,15,1,0,17,56,2,2,19,132,264,2,47,0,0,0,3035,264,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-29",,,,,,,,,,,,,,,,,,,,,
,,2020-05-13,3,0,29,7,1,4,0,13,32,0,120,6,33,11,1,5,1,0,19,4,2,0,29,4,262,0,0,1,5,4,0,7,33,10,13,0,15,21,41,11,210,0,1,13,0,32,75,0,0,90,1,0,4,3,0,32,6,32,3,0,2,3,1276,8,5,0,2,3,18,53,0,2,16,1,0,17,57,2,3,19,136,278,2,59,0,0,0,3211,278,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-30",,,,,,,,,,,,,,,,,,,,,
,,2020-05-14,3,0,30,7,1,4,0,13,32,0,122,6,35,11,1,5,1,0,19,4,2,0,30,4,275,0,0,1,5,4,0,7,34,11,14,0,15,21,41,11,219,0,1,16,0,32,77,0,0,98,1,0,4,3,0,32,6,34,3,0,2,3,1363,8,5,0,2,3,18,54,0,2,17,1,0,17,58,2,3,20,140,293,2,60,0,0,0,3368,293,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-31",,,,,,,,,,,,,,,,,,,,,
,,2020-05-15,3,0,30,7,1,4,0,13,33,0,123,6,35,11,1,5,1,1,19,4,2,0,30,4,291,0,0,1,5,5,0,7,34,12,15,0,15,21,41,11,231,0,1,17,0,32,77,0,0,103,1,0,4,3,0,32,6,34,4,0,2,3,1455,8,6,0,2,3,18,55,0,2,17,1,0,17,59,2,3,20,141,304,2,60,0,0,0,3516,304,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-32",,,,,,,,,,,,,,,,,,,,,
,,2020-05-16,3,0,31,7,1,4,0,13,33,0,123,6,35,11,3,5,1,1,20,4,2,0,30,4,295,0,0,1,5,5,0,7,34,12,15,0,15,21,42,11,233,0,1,17,0,32,77,0,0,106,1,0,5,3,0,32,6,34,4,0,2,3,1473,8,6,0,2,3,18,56,0,2,17,1,0,17,59,2,3,20,141,313,2,60,0,0,0,3559,313,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-33",,,,,,,,,,,,,,,,,,,,,
,,2020-05-17,3,0,31,7,1,4,0,13,34,0,123,7,35,11,3,5,1,1,20,4,2,0,31,4,303,0,0,1,5,5,0,7,34,13,15,0,15,21,42,11,236,0,1,17,0,32,77,0,0,107,1,0,5,3,0,32,6,34,4,0,3,5,1497,8,6,0,2,3,18,56,0,2,17,1,0,17,59,2,3,20,142,314,2,60,0,0,0,3604,314,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-34",,,,,,,,,,,,,,,,,,,,,
,,2020-05-18,3,0,32,7,1,4,0,13,34,0,124,8,35,11,3,5,1,1,20,4,2,0,33,4,318,0,0,1,5,6,0,7,34,13,15,0,15,21,42,11,242,0,1,18,0,32,78,0,0,108,1,0,6,3,0,32,6,35,5,0,3,5,1569,8,7,0,2,3,18,57,0,2,19,1,0,18,59,2,3,20,144,319,2,60,0,0,0,3721,319,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-35",,,,,,,,,,,,,,,,,,,,,
,,2020-05-19,3,0,32,7,1,4,0,14,34,0,124,8,35,11,3,5,1,1,23,4,3,0,35,4,338,0,0,1,5,6,0,8,34,16,15,0,15,21,43,11,249,0,1,18,0,33,80,0,0,113,1,0,6,3,0,33,6,38,5,0,3,5,1667,8,7,0,2,3,18,58,0,2,19,1,0,18,59,3,3,21,145,322,2,74,0,0,0,3891,322,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-36",,,,,,,,,,,,,,,,,,,,,
,,2020-05-20,3,0,33,7,1,4,0,16,34,0,125,8,36,11,3,5,1,1,24,4,3,0,39,4,370,0,0,1,9,6,0,8,34,16,15,0,15,21,43,11,255,0,1,19,0,33,81,0,0,118,1,0,6,3,0,34,6,41,5,0,3,5,1771,8,7,0,3,3,18,61,0,2,19,1,0,18,59,3,3,21,145,335,2,77,0,0,0,4078,335,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-37",,,,,,,,,,,,,,,,,,,,,
,,2020-05-21,3,0,34,7,1,4,0,16,34,0,128,8,37,11,3,5,1,1,27,4,3,0,43,4,388,0,0,1,9,6,0,8,35,17,15,0,15,21,45,11,262,0,1,20,0,33,85,0,0,124,1,0,6,3,0,36,6,43,5,0,3,5,1866,8,7,0,3,3,18,61,0,2,19,1,0,18,59,4,3,21,153,338,2,77,0,0,0,4241,338,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-38",,,,,,,,,,,,,,,,,,,,,
,,2020-05-22,3,0,34,7,1,4,0,16,35,0,128,8,37,11,3,5,1,1,28,4,3,0,46,4,396,0,0,1,9,6,0,8,35,21,15,0,15,21,47,11,271,0,1,21,0,33,86,0,0,126,1,0,6,3,0,36,6,47,5,0,3,5,1958,8,8,0,3,3,18,63,0,2,20,1,0,19,59,4,3,21,158,348,2,77,0,0,0,4389,348,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-39",,,,,,,,,,,,,,,,,,,,,
,,2020-05-23,3,0,34,7,1,4,0,16,35,0,128,9,38,11,3,5,1,1,30,4,3,0,48,4,400,0,0,1,9,6,0,8,36,21,15,0,15,21,47,11,272,0,1,23,0,33,87,0,0,127,1,0,6,3,0,36,6,48,5,0,4,5,1985,8,8,0,3,3,18,64,0,2,20,1,0,19,59,4,3,21,159,351,2,77,0,0,0,4439,351,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-40",,,,,,,,,,,,,,,,,,,,,
,,2020-05-24,3,0,34,7,1,4,0,16,35,0,128,9,38,11,3,5,1,1,31,4,3,0,49,4,402,0,0,1,9,6,0,8,36,21,15,0,15,21,47,11,272,0,1,23,0,33,87,0,0,129,1,0,6,3,0,36,6,48,6,0,4,5,2009,8,8,0,3,3,18,64,0,2,21,1,0,19,59,4,3,21,161,351,2,77,0,0,0,4473,351,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-41",,,,,,,,,,,,,,,,,,,,,
,,2020-05-25,3,0,34,7,1,4,0,16,35,0,128,9,38,11,3,5,1,1,32,4,3,0,49,4,407,0,0,1,9,6,0,8,36,21,15,0,15,21,47,11,274,0,1,24,0,33,87,0,0,129,1,0,6,3,0,36,6,49,6,0,4,5,2021,8,8,0,3,3,18,64,0,2,21,1,0,20,59,4,3,21,161,351,2,77,0,0,0,4496,351,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-42",,,,,,,,,,,,,,,,,,,,,
,,2020-05-26,3,0,34,7,1,4,0,16,35,0,130,9,38,12,3,5,1,1,34,4,3,0,50,4,414,0,0,1,9,7,0,8,36,21,15,0,15,21,50,11,281,0,1,24,0,33,88,0,0,132,1,0,6,3,0,36,6,51,6,0,5,5,2092,8,8,0,3,3,18,65,0,2,21,1,0,21,59,4,3,21,169,360,2,78,0,0,0,4618,360,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-43",,,,,,,,,,,,,,,,,,,,,
,,2020-05-27,3,0,35,7,1,4,0,16,35,0,130,10,41,13,3,5,1,1,34,4,3,0,51,4,423,0,0,1,9,7,0,8,36,21,15,0,15,21,51,11,291,0,1,24,0,33,89,0,0,135,1,0,6,3,0,36,6,52,6,0,7,5,2156,8,8,0,3,3,18,65,0,2,22,1,0,21,59,4,3,21,172,366,2,78,0,0,0,4726,366,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-44",,,,,,,,,,,,,,,,,,,,,
,,2020-05-28,3,0,36,7,1,4,0,17,35,0,131,10,42,13,3,5,1,1,36,4,3,0,52,5,432,0,0,1,9,7,0,8,36,21,15,0,15,21,51,11,300,0,1,26,0,33,93,0,0,138,1,0,6,3,0,36,6,53,6,0,8,5,2231,8,8,0,3,3,18,65,0,3,22,1,0,21,59,4,3,21,173,371,2,78,0,0,0,4845,371,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-45",,,,,,,,,,,,,,,,,,,,,
,,2020-05-29,3,0,37,7,1,4,0,17,35,0,133,10,43,13,3,5,1,1,36,4,3,0,52,5,441,0,0,1,9,7,0,8,37,21,15,0,15,22,51,11,313,0,1,26,0,33,96,0,0,143,1,0,6,3,0,36,6,56,6,0,9,5,2293,8,8,0,3,3,18,65,0,3,23,1,0,21,59,4,3,21,179,378,2,78,0,0,0,4961,378,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-46",,,,,,,,,,,,,,,,,,,,,
,,2020-05-30,3,0,37,7,1,4,0,17,35,0,134,12,43,13,3,5,1,1,36,4,3,0,53,5,442,0,0,1,9,7,0,8,37,21,15,0,15,22,51,11,318,0,1,27,0,33,97,0,0,145,1,0,6,3,0,38,6,57,6,0,9,5,2314,8,8,0,3,3,18,66,0,3,23,1,0,21,59,4,3,21,179,380,2,78,0,0,0,5002,380,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-47",,,,,,,,,,,,,,,,,,,,,
,,2020-05-31,3,0,37,7,1,4,0,17,35,0,134,12,43,13,3,5,1,1,36,4,3,0,54,5,443,0,0,1,9,7,0,8,37,21,15,0,15,22,51,11,320,0,1,27,0,33,98,0,0,145,1,0,6,3,0,38,6,57,6,0,9,5,2362,8,8,0,3,3,18,66,0,3,24,1,0,21,59,4,3,21,179,381,2,78,0,0,0,5057,381,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-48",,,,,,,,,,,,,,,,,,,,,
,,2020-06-01,3,0,37,7,1,4,0,18,35,0,137,12,44,13,3,5,1,1,36,4,3,1,54,5,453,0,0,1,9,7,0,8,37,21,15,0,15,22,52,11,332,0,1,27,0,33,99,0,0,146,1,0,6,3,0,38,6,60,6,0,10,5,2406,8,8,0,3,3,18,66,0,3,25,1,0,21,59,4,3,21,184,385,2,78,0,0,0,5146,385,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-49",,,,,,,,,,,,,,,,,,,,,
,,2020-06-02,3,0,37,7,1,4,0,18,36,0,139,12,45,13,3,5,1,1,36,4,3,1,55,5,463,0,0,1,9,7,0,8,37,21,15,0,16,22,52,11,338,0,1,29,0,33,100,0,0,148,1,0,6,3,0,38,6,61,6,0,11,5,2487,8,8,0,3,3,18,66,0,3,25,1,0,22,59,4,3,21,188,390,2,78,0,0,0,5266,390,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-50",,,,,,,,,,,,,,,,,,,,,
,,2020-06-03,3,0,39,7,1,4,0,18,36,0,139,12,46,13,3,5,1,1,37,4,3,1,57,5,468,0,0,1,9,7,0,8,37,21,15,0,16,22,54,11,345,0,1,33,0,33,105,0,0,154,1,0,6,3,0,38,6,61,6,0,11,5,2552,8,8,0,3,3,18,68,0,3,25,1,0,22,59,4,3,21,190,394,2,78,0,0,0,5374,394,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-51",,,,,,,,,,,,,,,,,,,,,
,,2020-06-04,3,0,39,7,1,4,0,18,37,0,142,12,46,13,3,5,1,1,39,4,3,1,57,5,475,0,0,1,9,7,0,8,37,21,15,0,16,22,55,11,352,0,1,33,0,33,105,0,0,156,1,0,6,3,0,38,6,63,6,0,11,5,2635,8,8,0,3,3,18,68,0,3,26,1,0,22,59,4,3,21,190,397,2,78,0,0,0,5486,397,"Taken from ""Confirmed and Probable Cases by County by Date"" downloadable file first released by the MDHHS cumulative coronavirus website on 2020-06-52",,,,,,,,,,,,,,,,,,,,,
2020-06-05 17:26,"https://web.archive.org/web/20200605212643/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-05,4,0,37,7,1,4,0,17,39,0,138,12,47,13,3,5,1,1,39,4,3,0,42,5,461,0,0,1,9,8,1,8,35,18,15,0,16,23,54,11,236,0,1,28,0,33,97,0,0,86,1,0,6,3,0,37,6,60,6,0,6,6,2402,8,8,0,4,3,18,68,0,3,27,1,0,22,61,5,3,21,176,379,2,104,0,1,4,5014,162,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",,,,,,,,,,,,,,,,,,,,,
2020-06-06 19:22,"https://web.archive.org/web/20200606232240/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-06,4,0,37,7,1,4,0,17,39,0,141,13,51,13,3,5,1,1,40,4,3,0,51,5,467,0,0,1,9,8,1,8,35,18,15,0,15,23,54,11,242,0,1,28,0,33,100,0,0,96,1,0,6,3,0,37,6,62,6,0,6,6,2506,8,8,0,4,3,18,69,0,3,29,1,0,22,61,4,4,21,178,450,2,105,0,0,0,5234,217,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",,,,,,,,,,,,,,,,,,,,,
2020-06-07 20:07,"https://web.archive.org/web/20200608000738/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-07,4,0,38,7,1,4,0,18,40,0,141,13,51,13,3,5,1,1,40,4,3,0,51,6,482,0,0,1,9,9,1,8,37,18,15,0,15,23,55,11,249,0,1,30,0,33,102,0,0,150,1,0,6,3,0,37,6,62,6,0,12,6,2524,8,8,0,4,3,18,70,0,3,29,1,0,22,61,6,4,21,179,643,2,105,0,0,0,5543,370,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2556,3096,50,,,661,833,788,922,1077,821,336,195,69,10,105,664,1840,251,208,2624
2020-06-08 18:16,"https://web.archive.org/web/20200608221658/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-08,4,0,38,7,1,4,0,18,40,0,141,14,50,13,3,5,1,1,41,4,3,0,50,5,482,0,0,1,9,9,1,8,36,18,15,0,15,23,57,11,249,0,1,30,0,33,104,0,0,154,1,0,6,3,0,37,6,63,6,0,12,5,2646,8,8,0,4,3,18,69,0,3,28,1,0,22,61,7,3,21,179,675,2,105,0,0,1,5702,383,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2556,3096,50,,,661,833,788,922,1077,821,336,195,69,10,105,664,1840,251,208,2624
2020-06-09 15:47,"https://web.archive.org/web/20200609194746/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-09,4,0,41,7,1,4,0,18,39,0,143,14,49,13,3,5,1,1,41,4,3,0,57,5,484,0,0,1,9,9,1,8,39,18,15,,15,22,57,11,259,0,1,33,0,33,107,0,0,161,1,0,6,3,0,38,6,64,6,0,12,5,2760,8,8,0,5,3,18,68,0,3,29,1,0,22,61,7,3,21,186,705,2,104,0,0,0,5891,406,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2634,3203,54,,,679,861,811,953,1105,847,357,208,70,10,107,682,1887,257,223,2725
2020-06-10 19:24,"https://web.archive.org/web/20200610232425/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-10,3,0,40,10,1,4,0,19,39,0,144,14,49,13,3,5,1,1,42,4,3,0,60,5,485,0,0,1,9,9,0,8,38,18,15,0,16,22,57,11,259,0,1,33,0,33,105,0,0,161,1,0,6,3,0,39,6,64,7,0,12,5,2759,8,8,0,5,3,18,69,0,3,28,1,0,22,61,7,3,21,193,705,2,104,0,0,0,5904,410,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2635,3216,53,,,680,861,814,953,1107,852,356,212,69,10,108,698,1920,260,225,2683
2020-06-11 19:23,"https://web.archive.org/web/20200611193817/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-11,3,0,40,11,1,4,0,20,40,0,148,14,50,13,3,5,1,1,43,4,3,0,60,5,487,0,0,1,9,9,0,8,39,19,15,0,16,22,58,11,262,0,1,33,0,34,106,0,0,159,1,0,6,3,0,39,6,65,7,0,13,5,2765,8,8,0,5,3,18,68,0,3,31,1,0,23,61,7,3,21,203,715,2,104,0,0,1,5953,414,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2663,3240,50,,,686,866,818,964,1113,867,359,216,64,10,109,711,1961,264,234,2664
2020-06-12 15:38,"https://web.archive.org/web/20200612233845/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-12,3,0,40,9,1,4,0,20,39,0,148,14,52,13,3,5,1,1,43,4,3,1,61,5,488,0,0,1,9,9,0,8,36,21,15,0,16,22,59,11,376,0,1,33,0,35,106,0,0,159,1,0,6,3,0,39,6,66,7,0,13,5,2753,8,9,0,5,3,18,71,0,4,30,1,0,23,59,8,3,21,193,714,3,104,0,0,0,6051,414,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2713,3285,53,,,703,882,830,986,1134,871,360,219,66,9,112,714,2028,271,241,2676
2020-06-13 15:32,"https://web.archive.org/web/20200613193251/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-13,3,0,42,10,1,4,0,20,39,0,149,14,53,13,3,5,1,1,43,4,3,1,61,5,489,0,0,1,10,9,0,8,39,21,16,0,16,22,60,11,373,0,1,35,0,34,106,0,0,160,1,0,6,3,0,40,6,71,7,0,13,5,2746,8,9,0,4,3,18,70,0,4,30,1,0,23,59,8,3,22,195,712,3,78,0,0,1,6035,411,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2683,3297,55,,,704,878,827,983,1128,867,364,217,67,10,113,713,2053,272,241,2633
2020-06-14 19:23,"https://web.archive.org/web/20200614232342/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-14,3,0,43,10,1,4,0,20,39,0,149,14,53,13,3,5,1,1,44,4,3,1,61,5,490,0,0,1,10,9,0,8,40,21,16,0,16,23,60,11,374,0,1,35,0,33,106,0,0,164,1,0,6,3,0,41,6,71,7,0,13,5,2747,8,9,0,4,3,18,71,0,4,31,1,0,23,59,8,3,23,196,726,3,78,0,0,1,6064,422,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2701,3308,55,,,702,882,833,992,1132,871,368,217,67,10,114,715,2068,274,240,2643
2020-06-15 19:13,"https://web.archive.org/web/20200615231309/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-15,3,0,44,10,1,4,0,20,40,0,148,14,53,13,3,5,1,1,44,4,3,1,62,5,497,0,0,2,10,12,0,9,40,22,16,0,16,23,60,11,377,0,1,35,0,35,106,0,0,165,1,0,7,3,0,41,6,72,7,0,13,5,2749,8,9,0,4,3,18,70,0,4,31,1,0,23,59,11,4,23,196,732,3,1,0,0,1,6021,425,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2650,3312,59,,,701,867,819,977,1123,873,373,217,71,11,114,710,2083,273,240,2590
2020-06-16 15:55,"https://web.archive.org/web/20200616205507/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-16,3,0,42,10,1,4,0,20,38,0,151,14,54,13,5,5,2,1,44,4,3,1,62,5,498,0,0,2,9,12,0,8,36,22,15,0,16,21,60,11,370,0,1,36,0,38,109,0,0,165,1,0,6,3,0,41,6,72,7,13,0,5,2777,8,9,0,4,3,18,71,0,4,32,1,0,23,59,12,5,24,202,756,3,1,0,0,3,6080,445,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2670,3343,67,,,703,870,831,985,1134,877,379,220,81,12,117,716,2130,279,239,2587
2020-06-17 15:09,"https://web.archive.org/web/20200617190958/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-17,3,0,42,10,1,4,0,20,39,0,152,14,53,13,5,5,2,1,44,4,3,1,63,5,499,0,0,1,10,12,0,8,37,22,15,0,16,21,60,11,367,0,1,36,0,36,110,0,0,166,1,0,6,3,0,39,6,72,7,0,13,6,2782,8,9,0,4,3,18,68,0,4,32,1,0,22,59,13,17,24,203,768,3,1,0,0,0,6104,452,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2676,3361,67,,,702,869,833,991,1140,876,383,229,81,12,119,721,2150,282,239,2581
2020-06-18 15:30,"https://web.archive.org/web/20200618193026/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-18,3,0,42,11,1,4,0,21,39,0,159,14,55,13,5,5,1,1,44,4,3,1,63,6,503,0,0,1,11,12,0,8,37,21,15,0,18,21,61,11,370,0,1,38,0,36,111,0,0,168,1,0,6,3,0,39,6,72,7,0,13,6,2808,9,9,0,6,3,18,67,0,4,32,1,0,23,59,14,33,24,204,770,3,1,0,0,1,6180,452,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2702,3410,68,,,710,880,843,997,1151,887,387,224,81,13,119,742,2192,285,239,2590
2020-06-19 15:28,"https://web.archive.org/web/20200619192828/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-19,3,0,42,11,1,4,0,21,39,0,159,14,54,13,5,5,1,1,45,4,3,1,64,5,508,0,0,1,11,12,0,8,41,21,15,0,20,21,62,11,372,0,1,39,0,36,113,0,0,169,1,0,6,3,0,41,6,73,7,0,13,5,2856,9,9,0,6,3,18,67,0,4,32,1,0,23,61,14,33,24,207,784,3,1,0,0,2,6268,452,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2730,3463,75,,,721,892,856,1007,1170,898,389,248,87,14,119,750,2216,285,238,2646
2020-06-20 18:12,"https://web.archive.org/web/20200620221226/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-20,3,0,42,11,1,4,0,20,38,0,160,14,54,13,5,5,1,1,45,4,3,1,65,5,510,0,0,1,11,12,0,8,41,21,15,0,19,21,62,11,376,0,1,39,0,35,113,0,0,174,1,0,6,3,0,42,6,74,7,0,13,5,3019,10,9,0,6,3,18,68,0,4,33,1,0,23,62,14,33,24,208,799,3,2,0,0,0,6461,452,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2810,3578,73,,,740,920,871,1032,1209,932,416,254,87,14,119,780,2263,283,253,2749
2020-06-22 10:24,"https://web.archive.org/web/20200622142404/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-21,3,0,42,11,1,4,0,20,38,0,160,14,54,13,5,5,1,1,45,4,3,1,66,5,514,0,0,1,11,12,0,8,41,21,15,0,21,21,61,11,380,0,1,39,0,35,114,0,0,174,1,0,6,3,0,42,6,74,7,0,13,5,3018,10,9,0,6,3,18,68,0,4,33,1,0,23,62,14,33,24,207,810,3,2,0,0,0,6481,451,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2820,3589,72,,,740,920,876,1036,1212,938,416,257,86,14,119,782,2276,283,253,2754
2020-06-22 17:51,"https://web.archive.org/web/20200622215131/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-22,3,0,42,11,1,4,0,20,38,0,159,14,54,13,4,5,1,1,45,4,3,1,66,5,513,0,0,1,11,12,0,8,43,21,15,0,21,21,61,11,382,0,1,39,0,35,115,0,0,182,1,0,6,3,0,42,6,76,7,0,13,5,3066,10,9,0,5,3,18,72,0,4,33,1,0,23,61,13,33,24,208,816,2,2,0,0,0,6548,456,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2845,3631,72,,,749,933,879,1043,1227,949,421,261,86,14,120,787,2281,283,254,2809
2020-06-23 20:57,"https://web.archive.org/web/20200624005737/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-23,3,0,42,11,1,4,0,19,38,0,159,14,55,13,4,5,1,1,45,4,3,1,68,5,514,0,0,2,11,12,0,8,41,21,15,0,21,21,61,11,381,0,1,40,0,34,115,0,0,179,1,0,6,3,0,41,6,75,7,0,13,5,3108,11,9,0,5,3,18,70,0,4,34,1,0,23,61,13,10,24,209,819,2,1,0,0,1,6567,457,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2860,3640,67,,,758,935,889,1047,1238,955,421,241,83,14,122,792,2306,285,258,2790
2020-06-24 22:55,"https://web.archive.org/web/20200625025504/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-24,3,0,42,11,1,4,0,19,38,1,159,15,59,13,4,5,1,1,45,5,3,1,68,5,536,0,0,1,11,12,0,8,41,21,15,0,23,21,61,11,382,0,1,42,0,34,115,0,0,174,1,0,6,3,0,42,6,76,7,0,13,5,3101,10,9,0,5,3,18,70,0,4,40,1,0,23,62,13,9,27,208,824,2,1,0,0,1,6602,454,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2860,3540,102,,,757,934,888,1045,1237,960,420,241,120,14,121,796,2328,289,259,2795
2020-06-26 11:02,"https://web.archive.org/web/20200626150208/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-25,3,0,39,11,1,4,0,19,38,1,159,14,60,13,4,5,1,1,45,5,4,1,71,5,525,0,0,1,10,12,0,8,45,21,15,0,22,21,72,12,381,0,1,42,1,35,114,0,0,178,1,0,6,3,2,41,6,77,6,0,13,5,3093,12,9,0,5,5,18,70,0,4,55,2,0,23,63,14,9,27,208,880,2,1,2,0,1,6683,461,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2880,3661,142,,,762,939,899,1050,1237,969,421,246,160,14,122,804,2357,291,258,2837
2020-06-26 23:42,"https://web.archive.org/web/20200627034205/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-26,3,0,39,11,1,4,0,19,38,2,159,14,60,14,4,5,1,1,44,5,3,1,74,5,524,0,0,1,10,12,0,8,41,21,15,0,21,21,71,12,388,0,1,42,1,35,114,0,0,178,1,0,6,3,1,41,7,79,6,0,13,5,3089,12,9,0,6,3,18,73,0,4,50,2,0,23,64,14,5,26,208,835,3,2,2,0,1,6634,458,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2884,3659,91,,,758,941,895,1052,1236,971,424,245,112,14,123,803,2367,295,259,2773
2020-06-27 19:09,"https://web.archive.org/web/20200627230958/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-27,3,1,39,11,1,4,0,19,38,2,161,14,59,14,4,5,1,1,44,5,3,1,73,5,522,0,0,1,10,12,0,8,42,21,15,0,21,21,71,12,393,0,1,42,0,34,116,0,0,179,1,0,6,3,1,41,9,77,6,0,13,5,3093,11,9,0,5,3,18,73,0,4,50,2,0,23,64,19,5,26,213,849,2,4,2,3,1,6670,471,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2898,3681,91,,,757,948,903,1057,1246,977,425,245,112,14,123,808,2376,297,261,2791
2020-06-28 21:24,"https://web.archive.org/web/20200629012457/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-28,3,1,39,11,1,4,0,19,38,2,161,14,60,15,4,5,1,1,44,5,3,1,74,5,522,0,0,2,10,12,0,8,41,21,15,0,21,21,71,12,399,0,1,42,0,34,117,0,0,179,1,0,6,3,1,42,9,77,6,0,13,5,3093,9,9,0,5,4,18,73,0,4,50,2,0,23,64,20,5,26,212,854,2,4,2,3,1,6685,476,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2904,3691,90,,,758,953,904,1058,1248,978,427,245,114,14,123,812,2387,298,263,2788
2020-06-29 16:43,"https://web.archive.org/web/20200629204321/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-29,3,1,39,12,1,4,0,19,38,2,161,14,60,15,4,5,1,1,44,5,3,1,76,5,538,0,0,3,10,12,0,8,41,21,15,0,21,21,70,12,400,0,1,42,0,34,118,0,0,181,1,0,6,3,1,42,9,79,6,0,13,5,3094,9,10,0,5,4,18,73,0,4,57,2,0,23,67,19,5,26,216,855,2,4,2,3,1,6726,477,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2920,3712,94,,,760,958,907,1067,1256,983,430,248,117,14,123,814,2407,298,264,2806
2020-06-30 17:09,"https://web.archive.org/web/20200630210921/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-06-30,3,1,39,12,1,4,0,19,38,2,161,14,64,15,4,5,1,1,44,5,3,1,77,5,548,1,0,2,10,12,0,8,41,21,15,0,22,21,72,12,405,0,1,43,0,39,118,0,0,191,3,0,6,3,1,42,9,86,6,0,15,5,3119,9,10,0,5,4,18,74,0,4,61,2,0,23,67,26,5,26,219,895,2,4,4,3,1,6858,503,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2962,3796,100,,,767,987,934,1086,1279,993,436,253,123,14,125,841,2440,301,264,2873
2020-07-01 15:54,"https://web.archive.org/web/20200701195412/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-01,3,1,39,12,1,4,0,19,38,2,163,14,64,15,4,5,1,1,44,5,3,1,77,5,547,1,0,1,10,12,1,9,43,21,15,0,21,21,72,12,412,0,1,43,0,39,120,0,0,234,3,0,6,3,1,42,9,86,6,0,14,5,3129,9,10,0,5,5,18,74,0,5,62,2,0,23,68,30,5,26,219,924,2,4,4,1,1,6957,523,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",2988,3870,99,,,775,993,946,1113,1299,1009,440,259,123,15,128,853,2462,308,267,2924
2020-07-02 15:49,"https://web.archive.org/web/20200702194935/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-02,3,1,39,12,1,4,0,18,37,2,159,14,64,15,4,5,1,2,47,5,4,1,64,5,556,1,0,1,10,12,1,9,45,21,16,0,21,22,72,12,424,0,1,45,0,36,121,0,0,241,3,0,6,3,0,42,9,85,6,0,14,6,3128,10,10,0,5,6,18,75,0,5,55,2,0,23,75,33,5,26,222,944,2,5,4,1,1,7003,534,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3014,3887,102,,,778,1008,952,1110,1315,1014,442,260,124,15,128,857,2494,314,270,2925
2020-07-04 13:20,"https://web.archive.org/web/20200704172050/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-03,3,1,41,12,1,4,0,18,38,2,159,16,62,16,4,5,1,1,48,5,4,1,68,5,568,0,0,1,10,12,1,9,46,22,17,0,21,22,72,12,429,0,1,45,0,36,120,0,0,240,3,0,6,3,2,41,9,86,6,0,14,6,3129,11,10,0,5,6,18,78,0,5,55,2,0,23,79,34,5,26,223,941,3,6,4,1,1,7040,529,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3014,3887,102,,,778,1008,952,1110,1315,1014,442,260,124,15,128,857,2494,314,270,2925
2020-07-05 14:16,"https://web.archive.org/web/20200705181628/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-04,3,1,41,12,1,4,0,18,38,2,159,16,61,15,4,5,1,1,48,5,4,1,69,5,568,0,0,1,10,12,1,9,45,23,17,0,22,22,72,12,427,0,1,46,36,0,120,0,0,240,3,0,6,3,2,41,9,86,6,0,14,6,3130,11,10,0,6,6,18,79,0,5,55,2,0,23,81,35,5,26,223,944,3,6,4,1,1,7048,532,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3031,3929,105,,,782,1011,956,1122,1328,1024,445,264,133,15,127,863,2527,319,274,2940
2020-07-05 17:06,"https://web.archive.org/web/20200705210613/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-05,3,1,41,12,1,4,0,19,38,2,161,16,61,15,4,5,1,1,48,5,4,1,69,5,577,0,0,1,10,12,1,9,45,23,17,0,22,22,72,13,425,0,2,46,0,36,120,0,0,240,3,1,6,3,1,41,10,87,6,0,15,6,3129,11,10,0,6,6,18,80,0,5,55,2,0,23,81,35,5,26,222,943,7,6,4,1,1,7065,532,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3031,3929,105,,,782,1011,956,1122,1328,1024,445,264,133,15,127,863,2527,319,274,2940
2020-07-06 17:30,"https://web.archive.org/web/20200706213011/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-06,3,1,41,12,1,4,0,22,38,2,161,16,61,15,4,5,1,1,48,5,4,1,67,5,585,0,0,1,10,12,1,9,45,24,17,0,22,22,75,13,427,0,1,46,0,37,120,0,0,241,3,1,6,3,1,41,11,87,6,0,15,7,3131,11,10,0,5,6,18,81,0,5,58,2,0,23,80,34,5,26,222,953,6,6,4,1,2,7096,533,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3043,3939,114,,,784,1016,960,1123,1330,1025,449,267,142,15,127,863,2535,319,275,2962
2020-07-07 17:18,"https://web.archive.org/web/20200707211825/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-07,3,1,42,12,1,4,0,22,40,2,163,16,63,18,4,5,1,1,49,5,4,1,71,5,586,0,1,3,10,13,1,9,47,24,17,0,21,22,76,13,437,0,2,46,1,38,122,0,0,251,3,1,7,3,1,41,11,90,6,0,19,7,3145,12,10,0,6,6,18,83,0,5,59,3,0,23,84,37,6,27,229,1039,7,6,4,1,1,7273,595,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3116,4038,119,,,801,1058,983,1145,1359,1044,463,275,145,16,126,888,2587,321,277,3058
2020-07-08 18:02,"https://web.archive.org/web/20200708220221/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-08,3,1,42,12,1,4,0,22,40,2,164,16,67,18,4,5,1,1,49,5,4,1,70,5,585,1,1,2,10,14,1,9,46,24,17,0,23,23,75,13,442,0,1,47,2,37,122,0,0,247,3,1,7,3,1,41,11,92,8,0,19,7,3164,13,12,0,6,6,18,81,0,4,63,3,0,23,87,37,9,27,229,1040,8,6,4,1,1,7314,600,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3132,4055,127,,,809,1069,993,1156,1351,1048,464,269,155,15,127,901,2617,325,279,3050
2020-07-09 15:30,"https://web.archive.org/web/20200709193029/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-09,4,1,42,12,1,4,0,23,42,2,164,17,69,18,4,5,1,1,50,5,4,1,69,5,588,0,1,2,10,14,3,10,46,24,17,0,24,23,77,13,455,0,1,49,2,37,123,0,0,247,3,1,7,3,1,43,11,93,8,0,19,7,3165,14,13,0,6,6,18,82,0,4,59,3,0,25,87,40,9,27,240,1055,8,6,4,1,2,7380,611,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3177,4079,124,,,820,1085,999,1171,1354,1059,467,271,154,15,127,909,2652,329,284,3064
2020-07-10 16:19,"https://web.archive.org/web/20200710211426/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-10,4,1,42,12,1,4,0,21,42,2,166,17,68,17,4,5,1,1,50,5,4,1,68,5,580,0,0,2,10,13,2,10,41,24,17,0,24,24,77,13,486,0,1,50,2,36,123,0,0,249,3,1,7,3,1,44,11,92,8,0,20,7,3163,15,13,0,6,6,18,80,0,4,64,3,0,25,88,41,9,27,231,1056,10,2,4,2,1,7390,610,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3183,4089,118,,,825,1100,994,1168,1366,1060,463,268,146,15,128,914,2675,336,286,3036
2020-07-11 18:49,"https://web.archive.org/web/20200711224905/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-11,4,1,42,12,1,4,0,22,43,2,166,17,67,17,4,5,1,1,51,5,4,1,70,5,583,0,0,2,10,13,2,10,41,24,17,0,24,24,81,13,486,0,1,52,2,36,124,0,0,248,3,2,7,3,1,44,11,92,8,0,20,7,3163,16,13,0,5,6,18,80,0,4,67,4,0,25,89,40,9,28,235,1066,10,2,4,1,1,7422,614,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3195,4102,125,,,829,1114,996,1172,1366,1061,464,267,153,15,127,918,2682,338,292,3050
2020-07-12 18:40,"https://web.archive.org/web/20200712224047/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-12,4,1,42,12,1,4,0,23,43,2,166,17,68,17,4,5,1,1,51,5,5,1,70,5,588,0,0,2,10,13,2,10,41,24,17,0,24,24,82,13,488,0,1,53,2,36,124,0,0,248,3,2,7,3,2,44,11,92,8,0,20,7,3165,16,13,0,5,6,18,80,0,4,67,4,0,25,89,40,9,31,235,1064,10,2,4,0,2,7438,614,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3193,4118,127,,,833,1118,996,1173,1365,1061,466,267,159,15,127,918,2693,338,288,3059
2020-07-13 22:41,"https://web.archive.org/web/20200714021520/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-13,4,1,43,12,2,4,0,23,43,2,166,17,70,18,4,5,1,1,51,5,6,1,71,5,593,0,0,2,10,14,2,10,42,25,17,0,24,24,82,13,487,0,1,55,2,37,125,0,0,252,3,2,7,4,3,44,11,93,8,0,20,7,3167,16,13,0,5,6,18,80,1,4,71,4,0,25,89,40,9,31,239,1064,10,2,4,4,0,7476,614,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3202,4141,133,,,840,1130,1001,1179,1367,1061,467,268,163,15,127,925,2697,339,289,3084
2020-07-15 13:24,"https://web.archive.org/web/20200715172155/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-14,4,1,43,12,2,4,0,24,42,2,167,24,70,17,4,5,1,1,51,5,6,1,71,5,593,0,1,2,10,15,5,10,42,30,17,0,24,24,84,13,499,0,1,56,2,37,124,0,0,252,3,7,8,4,3,47,12,92,8,0,20,7,3169,16,13,0,5,6,18,83,1,4,71,4,0,25,90,54,9,31,240,1089,10,2,4,0,0,7558,624,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3234,4185,139,,,855,1140,1014,1186,1384,1066,470,270,173,16,129,937,2741,347,291,3097
2020-07-16 12:30,"https://web.archive.org/web/20200716163018/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-15,4,1,44,12,2,4,0,23,42,2,168,24,73,17,4,5,4,1,53,5,7,1,71,5,616,0,1,3,10,14,5,11,43,30,17,0,27,23,86,13,507,0,1,58,2,38,125,0,0,254,3,4,8,4,3,49,12,96,8,0,20,8,3200,16,12,0,5,6,18,84,1,4,72,4,0,25,93,57,10,32,244,1145,11,2,4,0,0,7716,664,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3283,4282,151,,,866,1161,1044,1204,1412,1090,477,272,190,16,128,944,2774,348,300,3206
2020-07-16 16:16,"https://web.archive.org/web/20200716201606/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-16,4,1,46,13,2,4,0,25,43,2,170,24,74,18,4,5,4,1,55,5,8,3,73,5,616,0,1,8,10,15,6,16,53,33,17,0,28,23,86,13,514,0,1,59,2,37,128,0,0,294,1,5,8,4,4,56,12,103,9,0,26,9,3240,16,12,0,5,6,18,87,1,4,75,6,0,25,92,56,12,33,253,1244,9,4,4,8,1,7997,728,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3398,4442,157,,,899,1201,1085,1253,1255,1132,498,286,188,18,129,959,2832,348,309,3402
2020-07-18 13:43,"https://web.archive.org/web/20200718174300/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-17,4,1,46,14,2,4,0,24,45,2,169,25,73,18,4,5,4,1,55,5,9,3,75,5,621,0,1,9,10,14,6,11,45,33,17,0,23,24,91,13,525,0,1,58,2,36,128,0,0,305,1,6,8,4,4,57,12,109,14,0,31,8,3244,16,12,0,6,6,18,88,1,5,78,11,0,25,93,57,12,33,260,1286,9,4,4,0,3,8091,762,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3425,4497,169,,,911,1225,1097,1267,1465,1139,496,290,201,17,129,972,2870,349,312,3442
2020-07-19 13:52,"https://web.archive.org/web/20200719175207/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-18,4,1,46,14,2,4,0,24,44,2,172,25,75,18,4,5,4,2,55,6,12,3,75,5,631,0,2,12,11,14,5,11,42,33,17,0,24,20,95,13,526,0,1,62,2,38,129,0,0,311,1,6,8,6,4,57,13,104,14,0,32,8,3248,16,12,0,6,6,18,88,1,5,81,11,0,25,94,58,12,33,269,1301,9,5,4,0,1,8157,775,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3454,4537,167,,,915,1234,1110,1278,1479,1154,500,291,197,17,130,986,2891,352,311,3471
2020-07-20 12:59,"https://web.archive.org/web/20200720165903/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-19,4,1,46,14,2,4,0,24,45,2,173,25,75,18,4,5,4,2,55,6,10,3,77,5,638,0,3,11,11,14,5,14,42,33,17,0,24,20,96,13,539,0,1,62,3,37,129,0,0,311,1,7,8,5,4,56,13,107,15,0,32,8,3249,17,12,0,6,6,18,94,1,5,80,11,0,25,96,53,12,33,270,1309,9,6,4,0,4,8203,783,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3478,4559,168,,,928,1244,1115,1281,1488,1158,501,291,199,17,130,988,2916,354,313,3487
2020-07-21 10:34,"https://web.archive.org/web/20200721142344/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-20,4,1,47,14,2,4,0,24,45,2,172,25,84,19,4,5,4,2,56,6,11,3,77,5,640,0,3,11,11,14,5,13,46,33,17,0,23,20,98,13,542,0,1,62,3,37,129,0,0,311,1,7,8,5,4,57,14,106,15,0,34,9,3250,17,12,0,5,6,18,97,1,5,79,11,0,25,96,53,12,34,272,1318,9,6,4,2,3,8243,792,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3504,4570,169,,,941,1246,1122,1286,1489,1163,500,293,203,17,130,995,2925,356,316,3504
2020-07-22 13:23,"https://web.archive.org/web/20200723164726/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-21,4,1,48,14,2,4,0,25,48,4,171,26,82,19,4,6,4,2,56,7,11,1,80,5,653,0,4,10,11,14,5,14,43,34,17,0,23,20,98,13,552,0,1,61,3,38,129,0,0,321,1,8,10,5,4,61,14,106,16,0,37,9,3179,17,12,0,5,6,18,97,1,5,89,11,0,25,102,55,14,34,279,1377,9,13,4,0,23,8334,842,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3524,4636,174,,,955,1259,1129,1312,1497,1179,501,295,207,18,130,1011,2951,359,318,3547
2020-07-23 12:37,"https://web.archive.org/web/20200723163631/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-22,4,1,46,14,2,4,0,28,51,4,169,29,83,19,4,6,4,2,56,8,14,1,81,6,659,0,4,11,11,14,5,14,43,35,18,0,23,20,106,14,575,0,1,59,3,38,129,0,1,323,1,8,22,5,4,61,14,105,16,0,37,8,3259,18,13,0,5,6,18,94,1,5,82,8,0,25,101,61,16,34,279,1377,9,13,4,0,31,8482,838,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3595,4706,181,,,970,1290,1160,1333,1525,1183,510,297,214,18,133,1023,2985,366,319,3638
2020-07-23 18:10,"https://web.archive.org/web/20200724180225/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-23,4,2,47,14,2,4,0,28,52,5,168,29,85,20,4,6,4,3,57,8,13,1,81,5,664,0,6,14,11,15,5,16,44,33,18,0,24,20,105,14,583,0,1,62,5,38,130,0,1,326,1,7,13,5,4,60,14,107,17,0,44,9,3235,19,13,0,5,6,18,97,1,5,86,8,0,25,102,61,16,36,288,1388,8,1,4,0,4,8484,847,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3592,4712,180,,,976,1290,1165,1331,1525,1181,509,297,210,18,134,1018,3009,365,319,3621
2020-07-24 19:50,"https://web.archive.org/web/20200724235043/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-24,4,2,50,14,3,4,0,28,52,5,167,29,84,19,4,6,6,3,57,8,13,1,81,5,667,0,6,18,12,15,6,16,44,35,18,0,24,19,106,14,587,0,1,62,5,38,129,0,1,327,1,7,10,5,5,61,14,106,18,0,45,10,3240,20,13,0,5,6,18,97,1,5,89,8,0,25,103,66,17,37,289,1399,8,1,4,0,3,8531,856,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3612,4735,184,,,979,1294,1174,1338,1529,1186,516,297,218,18,134,1030,3044,371,323,3611
2020-07-26 14:14,"https://web.archive.org/web/20200726181405/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-25,4,2,55,14,3,4,0,27,58,5,172,30,85,18,4,6,7,3,57,8,13,1,81,5,671,0,6,19,12,15,6,19,44,35,18,0,24,22,111,14,598,0,1,64,5,38,131,0,1,329,1,7,10,5,5,62,14,108,18,0,45,9,3246,19,13,1,6,6,18,97,1,5,89,8,0,26,109,69,19,35,284,1444,8,1,4,1,6,8644,867,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3646,4794,204,,,1000,1305,1182,1347,1542,1201,523,301,243,18,133,1052,3110,375,324,3632
2020-07-27 13:11,"https://web.archive.org/web/20200727171109/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-26,4,2,55,14,3,5,0,27,56,5,173,30,85,18,4,6,7,3,57,8,13,1,80,6,682,1,6,19,12,15,7,19,45,35,18,0,24,22,111,13,597,0,1,64,5,38,131,0,1,328,1,7,10,5,5,62,14,108,18,0,45,9,3244,19,13,1,5,6,18,96,1,5,87,8,0,26,106,69,18,35,284,1445,8,1,4,1,2,8642,868,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3642,4792,208,,,1001,1306,1182,1348,1538,1200,521,301,245,18,133,1052,3105,374,325,3635
2020-07-28 12:06,"https://web.archive.org/web/20200728160619/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-27,4,2,55,14,4,4,0,27,56,5,175,30,85,18,4,6,8,3,58,8,13,1,80,6,684,1,6,20,15,15,7,19,45,35,18,0,24,22,110,13,597,0,1,70,4,38,135,0,1,328,1,6,10,5,5,64,14,110,18,0,45,9,3249,19,13,1,5,6,18,96,1,5,87,6,0,26,106,67,19,35,285,1445,8,1,4,1,2,8666,866,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3658,4801,207,,,1006,1314,1180,1354,1547,1198,520,301,246,18,133,1051,3122,374,324,3644
2020-07-29 11:14,"https://web.archive.org/web/20200729144853/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-28,4,2,54,14,4,4,0,27,56,5,176,31,88,18,4,6,7,3,65,7,13,1,82,6,676,2,6,20,15,16,7,21,46,34,18,0,25,23,114,13,614,0,1,72,4,41,134,0,3,329,1,10,10,5,5,67,14,111,19,0,45,9,3270,19,13,1,6,6,18,97,1,5,89,6,0,26,107,68,19,35,308,1465,9,1,4,0,2,8782,876,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3707,4881,194,,,1037,1340,1198,1368,1560,1209,526,308,236,19,133,1063,3181,382,327,3677
2020-07-30 13:04,"https://web.archive.org/web/20200730170402/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-29,5,2,54,14,3,4,0,27,58,5,176,32,87,18,4,6,7,3,65,7,13,1,82,6,682,2,6,20,15,17,7,21,51,34,20,0,26,21,113,13,613,1,1,72,4,42,135,0,3,331,1,10,10,5,5,65,14,113,18,0,46,9,3254,19,13,1,6,6,18,95,1,5,92,6,0,26,117,70,22,35,291,1483,9,1,4,1,2,8802,878,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3716,4866,220,,,1053,1335,1201,1371,1554,1205,522,306,255,19,133,1065,3204,384,325,3672
2020-07-31 14:14,"https://web.archive.org/web/20200730190815/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-30,5,2,55,14,3,4,0,28,58,3,173,32,88,18,4,6,7,3,65,7,14,1,82,7,684,2,6,19,16,18,7,22,46,34,20,0,25,21,113,13,615,1,1,72,4,42,137,0,4,337,1,10,10,5,5,68,14,115,20,0,47,9,3252,20,13,1,6,6,18,96,1,5,94,6,0,26,119,71,24,35,294,1547,9,1,4,1,3,8894,885,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3739,4895,260,,,1062,1340,1208,1379,1565,1214,526,311,289,19,134,1069,3227,386,328,3731
2020-07-31 17:08,"https://web.archive.org/web/20200731210800/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-07-31,5,2,55,14,4,4,0,29,58,2,177,32,90,18,4,6,8,4,65,7,15,1,82,8,688,2,7,22,16,18,7,21,48,34,20,0,25,21,119,13,627,1,1,75,5,42,142,0,4,341,1,10,11,5,4,68,14,114,19,1,47,9,3257,20,13,1,6,6,18,97,1,5,95,4,0,26,119,69,24,36,303,1543,9,1,4,1,3,8953,884,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3756,4931,266,,,1067,1346,1220,1381,1576,1225,531,309,298,19,134,1070,3266,394,332,3738
2020-08-01 18:55,"https://web.archive.org/web/20200801225541/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-01,4,2,55,14,4,4,0,30,57,2,179,32,90,18,4,6,8,4,65,7,17,1,81,7,691,2,7,25,16,18,7,21,48,35,20,0,24,20,120,12,633,1,1,79,4,40,143,0,4,340,1,10,10,5,4,71,14,113,19,1,47,8,3251,20,14,1,8,6,18,98,2,5,97,4,0,26,120,69,24,37,301,1552,9,1,4,1,3,8976,890,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3770,4943,263,,,1079,1345,1225,1384,1578,1230,531,305,299,19,137,1073,3286,398,333,3730
2020-08-03 10:56,"https://web.archive.org/web/20200803145647/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-02,4,2,55,14,3,4,0,30,55,2,178,32,91,18,4,6,8,3,65,7,19,1,81,7,695,2,7,27,16,18,7,21,48,33,20,0,24,20,120,12,631,1,1,79,4,40,143,0,3,338,1,10,10,5,5,72,14,113,19,1,46,8,3256,20,14,1,8,6,18,99,2,5,97,4,0,26,121,69,24,36,304,1545,9,1,4,1,6,8979,889,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3765,4947,267,395,686,,1346,1223,1382,1579,1227,532,304,305,19,137,1074,3289,401,331,3728
2020-08-03 16:32,"https://web.archive.org/web/20200803203219/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-03,4,2,54,14,3,4,0,31,55,2,177,32,91,18,4,6,8,3,65,7,19,1,81,7,694,2,7,27,15,18,7,21,47,34,20,0,25,20,124,12,634,1,1,80,4,38,142,0,3,338,1,11,10,5,5,73,14,114,19,1,46,8,3256,20,14,1,8,6,18,106,2,5,99,4,0,25,121,70,23,37,305,1541,9,1,4,1,3,8988,888,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3772,4947,269,395,686,,1348,1225,1386,1580,1224,533,304,307,19,136,1073,3294,402,330,3734
2020-08-04 17:54,"https://web.archive.org/web/20200805033649/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-04,4,1,54,14,3,4,0,25,56,2,179,32,93,19,4,6,10,6,66,7,20,1,65,7,702,2,8,26,14,19,7,24,55,34,20,0,25,20,123,12,649,1,1,83,4,39,142,0,4,359,1,12,11,5,6,74,14,117,19,1,46,8,3262,21,14,1,8,6,18,106,2,5,104,4,0,25,121,71,27,38,313,1594,9,3,4,1,3,9125,919,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3803,5032,290,400,699,,1377,1234,1406,1608,1229,540,307,325,20,165,1089,3338,411,339,3793
2020-08-05 17:52,"https://web.archive.org/web/20200805215246/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-05,4,1,53,14,3,4,0,26,55,2,180,32,98,19,4,6,11,6,66,9,19,1,61,8,705,2,6,24,14,19,7,25,48,34,20,0,25,20,126,12,663,1,1,81,4,39,143,0,5,362,1,13,11,5,9,74,14,118,19,1,47,9,3261,21,14,1,8,6,18,105,3,6,110,5,1,26,123,71,29,39,312,1612,10,5,4,1,6,9186,920,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3829,5066,291,407,709,,1385,1242,1413,1620,1239,539,310,322,20,137,1096,3383,413,345,3792
2020-08-06 19:58,"https://web.archive.org/web/20200806235850/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-06,4,1,53,14,3,4,0,26,63,2,179,33,99,19,4,6,12,4,66,9,20,1,61,8,703,3,7,24,19,19,7,25,47,35,20,0,27,20,129,12,660,1,1,77,4,39,143,0,5,363,1,12,11,5,11,75,14,119,19,1,47,9,3263,22,14,1,7,6,18,106,2,6,113,5,1,26,126,71,31,39,312,1627,10,5,4,1,6,9227,926,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3852,5081,294,410,714,,1394,1256,1413,1624,1241,544,309,322,20,140,1105,3411,417,348,3786
2020-08-07 14:48,"https://web.archive.org/web/20200807184824/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-07,4,1,53,14,4,4,0,26,65,2,178,33,99,20,4,7,12,5,66,9,19,1,61,8,706,3,7,23,17,19,7,26,47,35,20,0,26,20,128,13,676,1,1,78,4,39,143,0,5,365,1,13,11,6,13,75,14,121,19,2,47,9,3265,22,14,2,7,6,20,104,2,6,115,6,1,27,126,71,32,40,322,1632,10,5,4,1,4,9279,922,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3886,5131,285,420,732,,1408,1262,1420,1635,1248,549,317,311,20,142,1112,3478,419,356,3775
2020-08-08 15:13,"https://web.archive.org/web/20200809015733/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-08,4,1,57,14,3,4,0,29,72,2,179,34,99,21,4,7,12,5,66,9,20,1,60,8,706,3,7,22,18,20,7,25,47,35,20,0,25,20,130,13,676,1,1,77,4,39,142,0,6,363,1,12,11,6,14,76,14,119,20,2,47,9,3267,22,14,1,7,6,20,105,2,6,115,5,1,26,126,75,32,39,322,1637,10,5,4,2,4,9302,920,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3886,5131,285,420,732,,1408,1262,1420,1635,1248,549,317,311,20,142,1112,3478,419,356,3775
2020-08-09 18:14,"https://web.archive.org/web/20200809221457/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-09,4,1,56,14,3,4,0,29,73,2,179,34,99,21,4,7,12,4,66,9,20,1,62,8,705,3,7,22,18,20,7,25,47,34,20,0,26,20,129,13,680,1,1,76,5,39,142,0,6,364,1,14,11,6,15,78,14,121,19,2,47,9,3265,22,14,1,7,6,20,104,2,6,114,5,1,26,127,74,32,41,322,1645,10,5,4,2,9,9323,919,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3893,5146,284,421,730,,1412,1269,1426,1638,1247,549,317,314,20,142,1112,3495,419,356,3779
2020-08-10 19:03,"https://web.archive.org/web/20200810230644/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-10,4,1,56,15,3,4,0,27,74,2,178,34,98,21,4,7,12,4,66,9,21,1,62,8,707,3,6,22,18,20,7,25,47,34,20,0,26,20,134,13,682,1,2,77,5,39,142,0,6,364,5,14,11,6,15,79,14,120,19,2,47,9,3266,25,14,1,7,6,20,107,2,6,113,5,1,26,127,75,38,41,318,1650,10,5,4,2,5,9346,921,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3903,5151,292,425,732,,1415,1268,1428,1638,1247,549,319,325,20,140,1111,3503,421,356,3795
2020-08-11 16:37,"https://web.archive.org/web/20200811203742/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-11,4,2,59,15,3,4,0,29,76,2,178,33,98,25,4,7,13,5,66,9,24,1,62,8,709,3,9,22,17,21,7,25,48,34,20,0,27,20,134,13,681,1,2,77,5,38,142,0,6,368,6,15,11,6,17,83,14,124,19,2,49,9,3298,23,14,1,7,6,20,106,2,6,118,5,1,27,128,80,37,41,325,1675,10,5,4,3,4,9457,927,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3942,5217,298,434,750,,1436,1287,1440,1659,1252,550,320,329,20,140,1110,3545,427,360,3855
2020-08-13 11:05,"https://web.archive.org/web/20200813130534/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-12,4,1,61,15,3,4,0,26,77,2,179,33,100,24,4,7,12,5,67,9,22,1,60,8,712,3,8,22,18,22,7,25,48,34,20,0,26,20,131,13,682,1,2,78,5,39,146,0,6,374,6,14,11,6,18,82,14,126,19,1,50,9,3364,23,14,3,7,6,20,103,2,6,122,4,1,26,128,77,40,42,345,1535,11,5,4,3,5,9418,932,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3930,5183,305,432,764,,1450,1270,1440,1651,1231,544,307,329,20,138,1106,3557,428,358,3811
2020-08-13 21:57,"https://web.archive.org/web/20200814015701/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-13,4,1,61,15,3,4,0,25,78,2,178,34,101,25,4,7,13,6,67,9,23,1,60,8,714,3,8,23,18,21,7,27,48,35,20,0,26,20,131,13,684,1,2,80,5,39,150,0,6,383,5,15,11,6,17,82,14,127,21,1,50,12,3370,23,14,3,7,6,20,103,2,7,123,4,1,25,128,79,40,42,347,1535,11,5,4,6,5,9464,932,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3946,5206,312,437,782,,1449,1283,1451,1654,1237,544,305,322,20,138,1110,3582,431,366,3817
2020-08-14 22:23,"https://web.archive.org/web/20200815022349/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-14,4,2,61,14,3,7,0,26,80,4,179,34,102,25,4,7,13,6,67,9,23,1,61,8,717,3,8,25,18,21,7,24,49,35,20,0,26,21,129,13,683,1,2,81,5,40,153,0,5,398,5,14,11,6,21,83,14,131,21,1,52,12,3383,23,14,1,7,7,20,106,2,7,130,4,1,25,127,80,40,46,349,1576,11,8,4,5,13,9584,942,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3999,5268,317,442,795,,1475,1313,1472,1661,1247,548,308,323,21,138,1118,3617,436,364,3890
2020-08-15 21:00,"https://web.archive.org/web/20200816010040/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-15,4,2,62,14,3,8,0,26,79,4,180,34,103,25,5,8,13,5,67,9,25,1,61,9,717,4,8,24,19,21,7,25,49,35,20,0,27,22,129,13,683,1,2,80,5,40,158,0,5,401,5,14,11,7,23,83,14,129,20,1,52,12,3401,23,14,1,7,7,20,105,2,7,131,4,1,25,125,80,42,47,350,1592,11,5,4,5,5,9627,942,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4010,5291,326,438,812,,1484,1313,1477,1665,1253,548,312,325,21,138,1119,3635,443,365,3906
2020-08-16 21:54,"https://web.archive.org/web/20200817015424/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-16,4,2,62,14,3,7,0,26,78,3,180,34,102,25,5,8,13,5,67,9,25,1,61,9,719,4,10,24,18,21,7,24,49,34,20,0,27,21,128,13,685,1,1,80,5,40,159,0,5,402,5,16,11,7,24,82,14,130,20,1,53,12,3400,23,14,2,7,7,20,105,2,7,131,4,1,25,124,80,41,50,321,1524,11,5,4,5,11,9539,941,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3970,5246,323,436,808,,1463,1297,1467,1652,1235,541,313,327,21,138,1113,3635,443,362,3827
2020-08-17 20:32,"https://web.archive.org/web/20200818003234/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-17,4,2,62,14,3,7,0,26,79,3,181,34,108,26,5,8,13,5,67,9,24,1,61,9,723,4,9,23,18,21,7,24,49,34,20,0,28,21,133,13,686,0,1,81,5,40,159,0,5,404,5,16,11,7,23,82,14,130,20,1,52,12,3396,24,14,2,7,7,20,106,2,7,130,4,1,25,124,86,41,51,319,1530,11,5,4,5,11,9564,943,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",3979,5254,331,439,811,,1467,1298,1468,1657,1237,542,312,333,21,138,1117,3640,445,363,3840
2020-08-18 19:04,"https://web.archive.org/web/20200818230458/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-18,4,2,63,14,3,7,0,24,80,4,181,34,111,26,5,8,14,7,69,9,25,1,60,9,725,6,9,23,19,21,7,26,50,34,22,0,27,22,133,13,693,0,1,81,5,41,159,0,6,414,5,25,11,7,25,83,14,130,20,1,53,13,3431,24,14,2,7,7,20,108,2,7,133,4,1,25,125,84,45,51,321,1605,12,6,4,4,15,9741,955,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4055,5339,347,451,848,,1506,1321,1485,1670,1256,543,314,347,22,139,1121,3690,445,368,3956
2020-08-19 21:16,"https://web.archive.org/web/20200820011616/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-19,4,2,63,14,3,7,2,24,79,4,181,34,107,26,5,8,15,7,69,9,25,1,60,9,726,6,9,24,19,21,8,26,49,34,22,0,28,21,138,13,693,0,1,82,7,41,159,0,6,418,5,25,11,7,30,84,14,136,20,1,53,13,3476,23,14,2,7,7,20,108,2,7,140,4,1,26,126,84,45,55,324,1605,13,6,4,2,4,9813,953,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4097,5369,347,457,865,,1518,1326,1492,1685,1265,550,316,339,22,137,1120,3724,461,369,3980
2020-08-20 19:31,"https://web.archive.org/web/20200820233102/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-20,4,2,63,14,4,7,2,25,80,3,182,34,107,25,5,8,14,7,69,9,24,1,59,9,732,7,9,25,19,21,9,25,48,34,22,0,38,21,143,13,704,0,1,82,6,41,162,0,6,417,5,28,11,7,31,84,14,142,20,1,53,13,3502,25,14,1,7,7,20,110,2,7,144,4,1,26,125,84,43,57,331,1630,13,6,4,3,4,9921,960,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4152,5419,350,456,882,,1550,1342,1509,1694,1267,557,313,351,22,137,1123,3762,464,375,4038
2020-08-21 19:29,"https://web.archive.org/web/20200821232914/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"NOTE: Due to technical difficulties the Coronavirus Dashboard and Datasets will not be updated today.
*Note on new daily cases (08/21/20): Today’s number of new cases is less than expected due to a recent issue with the reporting of electronic lab results. A large number of received lab messages were improperly formatted and temporarily blocked some valid results from being processed and entered into the reporting system. This issue is currently being fixed. As the valid results enter the system over the next day or two, there will likely be higher than expected numbers of daily case counts. This lab result backlog should not affect the 7-day rolling average or the cases by date of onset in the dashboard data.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",,,,,,,,,,,,,,,,,,,,,
2020-08-22 20:06,"https://web.archive.org/web/20200823000607/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-22,4,2,62,14,6,6,2,23,81,3,181,36,108,25,5,8,15,8,70,9,28,1,61,9,736,7,10,28,18,21,9,30,48,34,24,0,41,22,145,13,713,0,1,84,6,41,163,0,8,421,5,32,11,7,28,86,14,142,20,1,53,13,3534,25,14,1,7,7,20,110,2,7,142,4,1,26,125,86,44,58,333,1643,13,7,4,1,4,10020,968,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4197,5479,344,464,898,,1575,1354,1531,1708,1271,558,314,347,22,139,1127,3820,475,381,4056
2020-08-23 21:07,"https://web.archive.org/web/20200823210749/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-23,4,2,62,14,6,6,2,23,82,3,181,36,108,25,5,8,14,8,70,9,29,1,61,10,732,7,10,28,18,21,9,29,48,34,24,0,48,22,143,13,712,0,1,83,6,42,163,0,8,415,5,31,11,7,29,84,14,143,20,1,53,13,3527,25,14,1,7,7,20,111,2,13,142,4,1,26,125,86,42,61,331,1636,13,7,4,1,14,10016,966,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4191,5477,348,466,897,,1571,1354,1531,1707,1273,559,311,347,22,139,1126,3822,479,381,4047
2020-08-24 21:50,"https://web.archive.org/web/20200825015052/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-24,4,1,62,14,6,6,2,23,83,4,180,38,108,25,6,9,14,8,71,9,27,1,60,10,731,7,10,28,18,23,9,28,48,34,24,0,40,22,142,13,714,0,1,83,7,42,165,0,8,415,5,32,12,7,30,84,14,142,20,1,53,13,3532,25,14,1,7,7,20,111,2,13,142,3,1,26,125,86,42,65,333,1636,13,7,4,1,14,10026,967,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4196,5482,348,466,898,,1567,1359,1532,1706,1272,559,312,355,22,137,1124,3833,478,378,4054
2020-08-25 20:34,"https://web.archive.org/web/20200826003424/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-25,4,1,63,14,7,6,2,24,83,3,184,38,109,26,5,9,16,9,73,9,28,1,62,10,738,7,10,30,18,23,9,28,49,34,24,0,42,23,143,13,717,0,1,83,7,43,165,0,8,432,6,32,12,7,30,85,14,146,20,1,56,13,3563,26,14,1,7,7,21,112,2,14,147,3,1,27,122,88,44,66,349,1688,15,7,4,1,14,10198,977,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4283,5563,352,471,916,,1607,1392,1561,1729,1282,566,318,356,23,137,1131,3867,479,384,4177
2020-08-26 21:22,"https://web.archive.org/web/20200827012257/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-26,4,1,63,14,7,6,2,25,84,3,184,38,109,27,5,11,16,10,73,9,26,1,60,10,744,7,10,31,18,23,9,28,48,34,24,0,44,23,143,13,726,0,1,85,7,45,165,0,8,439,6,35,12,7,29,88,14,145,20,1,56,13,3549,26,14,2,7,7,22,111,2,14,146,3,1,27,124,86,47,65,327,1780,15,7,4,1,4,10280,982,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4295,5573,412,474,926,,1608,1389,1565,1729,1285,565,319,420,23,138,1141,3875,480,394,4228
2020-08-27 19:11,"https://web.archive.org/web/20200827231140/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-27,4,1,63,14,8,6,2,25,84,3,184,37,110,27,5,12,16,11,73,9,26,1,60,10,745,7,10,31,18,24,9,29,48,34,24,0,43,23,146,13,727,0,1,83,7,47,171,0,8,442,6,35,12,7,29,90,14,147,20,1,56,13,3575,26,14,1,8,7,22,117,2,16,150,5,1,27,125,87,46,65,331,1816,15,7,4,3,4,10385,989,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4337,5631,417,481,942,,1628,1409,1586,1737,1293,569,318,422,23,139,1143,3929,488,397,4266
2020-08-28 21:59,"https://web.archive.org/web/20200829015931/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-28,4,1,65,14,7,6,2,26,83,3,184,39,110,27,5,13,20,10,74,9,26,1,60,10,745,7,10,33,18,24,9,29,48,34,24,0,45,23,146,13,732,0,1,82,7,45,172,0,8,451,5,34,12,7,31,90,14,148,20,1,56,13,3586,26,14,1,8,7,22,118,2,16,151,5,1,27,126,88,48,67,331,1827,13,7,4,2,4,10437,977,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4359,5660,418,479,950,,1645,1410,1598,1740,1299,575,318,423,23,139,1142,3957,490,404,4282
2020-08-29 18:13,"https://web.archive.org/web/20200829221347/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-29,4,1,69,14,9,6,2,26,83,3,184,40,111,28,5,13,20,10,74,9,26,1,59,10,748,7,11,33,18,24,9,30,49,34,24,0,47,23,146,13,730,0,1,83,8,47,175,0,8,456,5,34,12,7,32,90,14,149,20,1,56,13,3592,26,14,1,9,7,21,124,2,16,153,5,1,27,125,88,51,72,333,1834,13,8,5,2,4,10497,981,"Note: Public datasets were not updated at the time of aggregation, so data was taken from the dashboard table view
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4388,5691,418,482,955,,1668,1413,1602,1744,1310,579,322,422,23,140,1146,3999,491,398,4300
2020-08-30 16:09,"https://web.archive.org/web/20200831024735/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-30,5,1,68,14,7,6,2,26,82,2,184,40,111,28,6,13,21,10,74,9,28,1,59,10,745,7,10,33,18,24,12,30,49,34,24,3,53,23,144,13,730,0,1,83,7,45,175,0,8,456,5,33,12,7,32,88,14,148,20,1,56,13,3591,26,14,1,9,7,21,129,2,17,153,5,1,27,125,88,52,71,333,1831,13,8,5,2,15,10509,978,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4393,5694,422,484,956,,1667,1414,1604,1745,1313,581,321,424,23,140,1146,4006,494,399,4301
2020-08-31 18:52,"https://web.archive.org/web/20200831225229/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-08-31,5,1,71,14,7,6,2,26,82,2,184,43,113,30,5,13,20,9,74,9,27,1,59,10,748,7,10,36,19,24,12,31,48,34,24,2,56,23,147,13,733,0,1,83,7,45,174,0,8,455,5,34,12,6,31,88,14,150,20,1,58,14,3601,26,14,1,9,7,21,126,2,17,158,5,1,27,125,89,53,71,334,1838,13,8,5,3,17,10557,983,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4410,5715,432,485,961,,1673,1427,1609,1749,1315,581,321,436,23,140,1147,4019,492,402,4334
2020-09-01 15:24,"https://web.archive.org/web/20200901192440/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-01,6,1,71,14,7,6,2,25,87,2,183,46,113,30,6,13,21,9,75,9,28,1,61,10,749,8,10,38,19,23,14,32,48,34,24,2,54,23,160,13,737,0,1,83,7,46,174,0,8,460,6,36,13,9,31,91,14,150,20,1,59,14,3616,26,14,1,9,7,22,129,2,17,159,5,1,27,126,89,53,72,328,1847,16,8,5,4,14,10634,989,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",,,,,,,,,,,,,,,,,,,,,
2020-09-03 10:35,"https://web.archive.org/web/20200903021054/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-02,6,1,70,14,7,6,2,25,90,3,185,46,115,29,6,13,21,9,76,9,27,1,61,10,752,8,10,38,19,23,14,32,48,34,24,2,55,23,194,13,737,0,1,87,7,48,174,0,8,463,5,39,13,7,31,94,15,154,20,1,60,14,3634,26,14,1,9,7,22,132,2,17,175,5,1,29,127,88,57,73,329,1873,16,8,5,4,5,10758,995,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4508,5799,451,501,981,,1754,1440,1630,1777,1323,582,321,449,25,142,1163,4149,501,417,4361
2020-09-03 15:36,"https://web.archive.org/web/20200903193606/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-03,7,1,71,14,7,6,2,24,89,4,186,48,117,29,6,13,22,9,76,9,26,1,60,10,753,8,10,39,19,24,14,33,49,36,24,2,56,23,195,13,740,0,1,86,7,48,178,0,8,463,5,41,13,7,31,94,15,155,20,1,60,14,3678,26,14,1,9,7,22,132,2,17,173,5,1,29,127,88,57,73,329,1899,16,7,5,3,5,10847,994,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4556,5844,447,501,995,,1779,1459,1639,1792,1330,585,322,445,26,147,1164,4215,508,421,4366
2020-09-04 22:54,"https://web.archive.org/web/20200905025412/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-04,7,1,72,14,7,6,2,24,91,4,186,47,118,32,6,15,21,9,76,9,26,1,60,10,756,8,11,42,19,25,14,33,51,35,27,2,56,23,203,13,745,0,1,87,7,48,178,0,10,465,5,40,13,8,31,95,15,155,20,1,60,14,3696,26,14,1,9,7,22,131,2,17,175,5,1,29,128,88,59,74,330,1908,16,7,5,3,5,10918,999,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4584,5881,453,505,1011,,1797,1467,1651,1798,1334,585,323,447,25,146,1170,4247,514,424,4392
2020-09-05 18:51,"https://web.archive.org/web/20200905225122/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-05,7,1,73,14,7,6,2,24,91,4,189,46,119,31,6,15,21,9,76,9,29,1,61,10,757,8,12,42,19,25,15,32,49,35,30,2,56,23,208,13,745,0,1,88,7,48,178,0,11,470,5,40,16,7,31,96,15,155,20,1,60,14,3696,26,14,1,9,7,22,135,2,17,173,5,1,31,128,91,58,77,335,1926,16,7,5,4,5,10976,1003,"This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4608,5919,449,504,1022,,1803,1480,1664,1802,1341,588,323,449,25,146,1173,4303,517,429,4383
2020-09-07 21:30,"https://web.archive.org/web/20200908013019/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-07,7,1,73,14,7,6,2,25,90,4,190,46,120,31,6,15,21,9,77,9,29,1,63,10,755,8,10,45,20,25,22,33,49,35,31,2,59,23,207,13,746,0,1,87,7,48,181,1,11,471,5,40,16,7,31,97,15,155,20,1,60,14,3692,26,14,1,9,7,22,137,2,17,172,5,1,31,129,91,58,78,339,1948,16,7,5,3,15,11032,1001,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4598,5916,518,505,1018,,1806,1481,1654,1803,1338,585,321,521,26,145,1175,4331,521,429,4405
2020-09-08 16:09,"https://web.archive.org/web/20200908210015/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-08,7,1,73,14,7,8,2,26,90,4,190,48,119,32,6,15,21,9,77,9,29,1,63,10,756,8,10,47,22,26,27,33,49,35,30,2,59,24,210,13,747,0,1,88,7,46,181,1,11,472,5,41,16,7,31,97,15,158,20,1,60,14,3708,26,14,1,9,7,22,141,2,17,172,5,1,31,129,91,58,78,339,1962,16,7,5,3,15,11090,1001,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4624,5942,524,511,1027,,1822,1486,1663,1803,1346,585,321,526,26,146,1176,4350,519,432,4441
2020-09-09 18:10,"https://web.archive.org/web/20200909221046/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-09,7,1,78,14,7,7,3,30,93,4,187,48,120,35,6,15,21,9,77,9,29,1,63,10,769,9,10,49,27,28,30,33,50,35,31,2,59,23,229,13,749,0,1,89,8,46,182,1,14,486,5,44,16,8,31,97,15,158,20,1,62,14,3765,26,14,1,10,7,22,142,2,17,172,5,1,31,128,93,58,77,340,2003,16,7,5,3,5,11268,1031,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4712,6024,532,516,1043,,1862,1496,1683,1822,1369,603,353,521,27,147,1201,4434,529,436,4494
2020-09-10 21:07,"https://web.archive.org/web/20200911010729/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-10,7,1,78,14,7,7,3,27,91,4,187,47,121,34,6,15,21,10,78,9,29,1,65,10,755,9,10,48,26,27,31,32,52,35,31,3,57,23,253,13,756,2,1,88,8,46,183,0,14,484,5,42,16,7,31,96,15,157,20,1,62,14,3774,26,15,1,10,8,22,143,2,17,183,5,1,31,131,93,57,80,343,2012,16,7,5,5,15,11327,1034,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4751,6050,526,522,1065,,1889,1502,1687,1827,1374,601,346,514,27,151,1202,4484,535,444,4484
2020-09-11 22:47,"https://web.archive.org/web/20200912024726/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-11,7,1,77,14,7,7,3,28,90,4,191,49,120,34,6,15,22,10,79,9,30,1,66,10,754,8,10,53,25,26,34,32,54,36,32,3,59,23,274,13,757,2,1,87,8,46,185,0,14,491,6,43,16,8,31,95,15,157,21,1,62,14,3777,26,15,1,9,7,22,145,2,17,185,5,1,31,131,93,55,80,341,2048,16,8,5,5,18,11419,1034,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4834,6150,550,534,1109,,1955,1514,1708,1841,1384,605,347,537,28,154,1218,4597,544,453,4540
2020-09-13 15:40,"https://web.archive.org/web/20200913194020/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-12,7,1,79,14,7,7,3,29,90,4,188,49,120,35,11,15,22,10,79,9,31,1,66,10,755,8,10,55,26,26,41,32,55,36,34,3,61,23,289,13,760,2,1,86,8,46,186,0,15,496,6,45,16,11,31,95,15,158,20,1,62,14,3789,26,15,1,9,7,22,145,2,17,182,5,1,31,130,93,55,81,348,2097,16,8,5,6,15,11534,1041,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4834,6150,550,534,1109,,1955,1514,1708,1841,1384,605,347,537,28,154,1218,4597,544,453,4540
2020-09-14 21:33,"https://web.archive.org/web/20200915013332/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-14,7,1,78,15,7,7,5,28,90,4,189,50,121,34,11,15,23,9,80,9,31,1,66,11,760,8,12,53,25,28,40,32,57,36,34,3,61,23,306,14,760,2,1,87,8,46,192,0,15,501,6,48,16,9,31,95,15,160,24,1,63,14,3805,27,15,1,10,7,22,151,2,17,186,5,1,31,135,94,54,84,348,2158,16,8,5,4,11,11675,1077,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4901,6213,561,538,1136,,2000,1530,1727,1853,1383,613,348,547,30,154,1229,4641,546,474,4601
2020-09-15 17:07,"https://web.archive.org/web/20200915210711/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-15,7,1,79,16,7,7,5,28,90,4,188,54,122,34,11,15,23,9,80,9,32,2,74,11,762,8,12,53,25,28,40,32,57,36,35,3,63,23,320,13,758,1,1,89,8,46,193,1,15,505,6,49,16,9,31,95,15,159,27,1,63,14,3832,27,15,1,10,7,22,147,2,17,186,5,1,31,137,94,54,84,351,2206,16,8,5,4,4,11786,1083,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4941,6280,565,542,1169,,2031,1542,1744,1871,1379,613,347,548,31,155,1230,4711,551,474,4634
2020-09-16 20:01,"https://web.archive.org/web/20200917000117/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-16,7,1,79,15,7,7,5,29,90,4,187,55,128,34,12,15,24,9,80,9,33,3,75,11,767,9,12,53,25,29,42,32,56,36,34,3,67,23,346,13,761,2,1,89,8,46,194,1,15,505,6,50,16,9,31,95,16,163,26,1,63,15,3844,27,15,1,10,7,22,143,2,17,194,5,1,31,138,94,54,84,351,2223,16,8,5,4,4,11879,1088,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",4975,6336,568,552,1188,,2070,1550,1752,1878,1382,614,346,547,31,158,1232,4768,561,478,4651
2020-09-17 21:59,"https://web.archive.org/web/20200918015958/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-17,7,1,80,15,8,7,5,28,91,5,187,56,133,33,12,16,26,10,80,9,32,3,75,11,779,9,12,56,25,29,47,32,70,36,34,3,67,24,365,13,771,1,1,91,8,46,194,1,16,507,6,49,16,11,33,94,16,159,26,1,64,15,3888,27,15,1,10,7,22,142,2,17,193,6,1,31,140,94,56,83,351,2249,16,8,5,4,5,12030,1076,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",5045,6401,584,560,1210,,2108,1557,1770,1886,1393,619,345,582,30,164,1233,4856,571,479,4697
2020-09-18 21:51,"https://web.archive.org/web/20200919015120/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-18,7,1,78,15,8,7,5,28,91,5,188,56,140,36,12,16,25,10,81,9,35,3,76,15,777,10,12,56,25,29,55,33,70,36,34,2,67,24,399,13,771,1,1,92,8,47,195,1,16,507,6,49,16,11,36,94,16,159,26,1,64,15,3895,27,15,1,10,7,22,142,2,17,195,6,2,31,138,98,56,83,350,2256,16,8,5,6,4,12113,1082,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",5078,6454,581,566,1228,,2134,1571,1782,1895,1388,616,342,591,31,163,1231,4932,576,488,4692
2020-09-20 15:26,"https://web.archive.org/web/20200920192610/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-19,7,1,78,18,8,6,5,26,93,5,188,55,140,38,12,16,25,10,80,9,38,2,69,15,784,9,12,55,26,28,61,35,73,36,34,2,69,24,436,14,770,1,1,92,8,47,200,1,16,511,5,49,16,11,36,99,17,160,27,1,64,15,3920,27,15,1,10,7,22,145,2,17,194,6,2,31,139,98,58,85,347,2259,16,8,5,10,4,12217,1081,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",5137,6499,581,575,1256,,2184,1577,1787,1894,1390,617,344,593,32,165,1232,4999,587,492,4710
2020-09-21 21:42,"https://web.archive.org/web/20200922014248/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-21,7,1,77,22,8,6,5,29,94,5,188,55,143,45,12,16,25,9,80,9,42,3,69,15,780,9,12,56,26,28,62,36,72,36,35,3,74,24,436,14,767,1,1,90,7,47,203,1,16,514,5,49,16,11,41,96,17,159,27,1,64,15,3927,27,16,1,9,7,22,145,2,17,194,7,2,31,137,98,60,85,344,2251,16,8,5,10,19,12256,1081,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",5160,6512,584,574,1260,,2186,1579,1788,1906,1392,619,345,607,32,167,1235,5028,591,488,4715
2020-09-23 08:53,"https://web.archive.org/web/20200923125340/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-22,7,1,77,27,8,6,6,28,95,5,189,59,143,45,13,16,26,9,80,10,43,3,69,16,791,9,12,56,29,28,64,33,73,37,34,6,71,24,461,15,777,1,1,91,7,46,203,1,16,517,5,51,16,11,39,99,16,159,27,1,64,15,3984,27,16,1,10,7,22,159,2,17,196,7,2,31,135,101,62,85,356,2300,16,8,5,6,5,12447,1085,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",5258,6588,601,583,1301,,2223,1608,1808,1930,1405,622,349,618,34,168,1239,5108,595,492,4811
2020-09-24 10:10,"https://web.archive.org/web/20200924141035/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-23,7,1,77,27,8,6,8,28,95,5,191,59,145,45,12,16,26,9,81,10,46,3,68,16,791,9,12,58,35,28,78,33,73,37,36,4,72,24,484,15,781,1,1,91,7,46,202,1,16,529,5,52,16,11,45,100,16,161,27,1,64,15,3993,27,16,1,11,7,23,158,2,17,202,7,2,31,135,99,64,86,379,2366,16,8,5,7,16,12644,1085,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",5349,6691,604,600,1338,,2274,1627,1809,1948,1414,629,347,658,34,170,1249,5232,606,501,4852
2020-09-24 20:59,"https://web.archive.org/web/20200925005954/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-24,7,1,81,27,8,6,8,29,95,5,198,61,147,45,12,17,27,9,82,10,47,3,68,14,802,9,12,59,36,28,79,35,73,37,37,4,74,24,509,15,781,1,1,92,7,46,204,1,16,536,5,56,16,12,45,99,16,160,28,1,64,15,4010,27,16,1,11,7,23,160,2,17,202,6,2,31,140,100,67,86,397,2353,16,8,5,5,6,12740,1086,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",5399,6738,603,611,1374,,2290,1640,1820,1954,1424,625,347,655,35,171,1251,5311,620,510,4842
2020-09-26 11:42,"https://web.archive.org/web/20200926154239/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-25,7,1,80,21,8,6,9,29,95,5,198,62,151,45,12,17,27,9,81,9,43,3,69,13,807,9,12,58,36,28,80,37,73,38,37,4,72,24,533,15,787,1,1,92,7,46,207,1,16,539,5,57,16,12,46,100,16,160,28,1,64,15,4035,27,16,1,10,7,23,155,2,17,205,6,2,31,140,101,71,86,398,2398,16,8,5,5,6,12851,1098,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",5444,6797,610,614,1411,,2312,1649,1846,1958,1430,626,348,657,35,175,1259,5380,621,512,4869
2020-09-26 20:12,"https://web.archive.org/web/20200927001218/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-26,8,1,82,21,8,6,10,29,97,5,201,66,157,47,12,18,28,9,81,9,47,3,70,13,804,11,13,58,35,28,80,37,71,38,39,5,74,24,549,15,795,2,1,93,7,46,210,1,17,543,5,56,16,11,50,100,16,160,28,1,64,14,4051,27,16,1,10,7,24,151,2,19,206,6,2,31,137,102,71,86,391,2411,16,8,5,5,16,12946,1100,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",5480,6846,620,622,1424,,2328,1661,1851,1972,1428,636,352,672,35,177,1268,5446,623,513,4884
2020-09-28 19:40,"https://web.archive.org/web/20200928234012/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-28,8,1,81,21,9,6,9,27,96,5,200,65,156,48,12,18,28,9,81,9,52,3,70,13,808,10,14,59,36,30,90,38,71,37,39,4,81,24,549,15,797,2,1,94,7,46,210,1,17,545,5,57,16,12,54,104,16,164,27,1,64,14,4052,27,16,1,11,7,24,148,2,19,205,6,2,31,138,105,69,85,390,2409,16,2,5,5,6,12967,1102,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",5480,6864,623,616,1429,,2343,1645,1865,1971,1432,635,350,681,38,174,1268,5447,628,514,4898
2020-09-29 20:04,"https://web.archive.org/web/20200930000425/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-29,9,2,83,21,8,6,9,29,95,5,197,68,161,48,12,17,28,9,82,9,61,3,73,13,810,10,13,59,35,31,90,38,71,37,40,4,83,25,574,16,808,2,1,98,7,47,208,1,18,563,5,57,16,12,58,104,16,161,27,1,64,14,4109,30,16,1,12,7,24,152,2,20,207,7,2,32,143,107,65,86,392,2455,16,2,5,7,16,13187,1106,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",5570,6976,641,632,1472,,2387,1672,1884,1992,1445,639,353,711,39,179,1278,5533,638,522,4998
2020-09-30 21:58,"https://web.archive.org/web/20201001015809/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-09-30,10,2,83,21,8,6,9,33,96,5,199,67,168,47,12,17,29,9,82,9,61,3,74,13,812,10,14,59,37,31,84,39,71,37,40,4,82,25,587,16,819,1,1,102,7,47,210,1,19,569,6,61,16,14,54,104,16,162,27,1,66,17,4137,31,16,1,12,7,25,153,2,19,207,7,2,32,144,110,65,86,396,2506,16,2,5,8,7,13327,1113,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",5630,7053,644,646,1492,,2410,1696,1896,2024,1447,643,357,716,43,182,1289,5626,642,531,5014
2020-10-01 20:22,"https://web.archive.org/web/20201002002237/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-01,9,2,83,22,8,7,9,33,96,5,199,68,170,47,12,17,29,9,82,9,78,3,74,13,814,12,14,58,40,32,87,38,72,34,40,4,83,25,595,16,833,0,1,103,7,47,210,1,18,578,6,63,16,14,62,105,16,165,27,1,66,17,4150,31,16,1,12,7,26,157,2,19,198,7,2,32,151,109,65,88,391,2529,16,2,5,7,7,13434,1121,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",5675,7118,641,650,1497,,2441,1702,1915,2035,1456,645,359,734,43,184,1294,5691,648,538,5036
2020-10-02 21:34,"https://web.archive.org/web/20201003013400/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-02,9,2,84,22,8,6,9,34,98,5,200,71,173,50,12,17,30,9,98,9,78,3,80,13,816,11,15,60,39,33,95,38,72,34,40,4,83,27,609,16,841,0,1,104,7,47,213,1,21,601,6,73,16,14,63,107,16,164,34,1,66,17,4167,31,16,1,12,7,24,161,2,19,199,7,2,34,149,112,65,88,401,2579,16,2,5,7,7,13638,1142,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",5762,7207,669,665,1529,,2484,1723,1934,2068,1467,652,362,754,44,188,1304,5792,663,545,5102
2020-10-03 17:00,"https://web.archive.org/web/20201003210025/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-03,9,3,85,21,8,6,10,33,98,5,198,71,174,50,13,19,31,10,98,9,80,3,81,13,814,11,15,59,39,32,106,38,73,34,40,4,83,28,627,16,834,0,1,104,7,48,213,1,21,627,6,80,16,14,62,107,16,164,33,1,66,17,4177,34,16,1,11,7,24,163,2,19,201,7,2,35,148,112,68,87,405,2602,17,3,5,7,17,13755,1144,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",5817,7262,676,677,1566,,2512,1738,1947,2071,1474,655,361,754,44,195,1314,5849,670,557,5126
2020-10-05 15:58,"https://web.archive.org/web/20201005195823/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-05,9,5,87,19,8,6,10,33,98,5,199,72,176,50,13,20,30,12,102,9,88,3,81,13,815,11,15,60,40,34,103,40,73,34,39,4,88,29,626,16,832,1,1,104,7,47,215,1,21,624,6,80,16,14,63,105,16,164,33,1,65,17,4159,34,17,1,11,7,23,164,2,19,201,7,3,35,149,113,68,88,414,2631,17,3,5,7,17,13803,1153,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",5840,7292,671,676,1573,,2509,1742,1952,2063,1479,655,365,789,43,193,1316,5879,671,554,5147
2020-10-06 21:39,"https://web.archive.org/web/20201007013908/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-06,9,8,88,18,8,6,11,38,98,5,201,75,182,51,14,18,33,11,103,9,92,3,79,13,818,11,15,60,40,34,117,41,72,33,39,4,91,32,657,16,851,1,1,107,7,47,221,1,21,636,6,83,16,14,73,108,16,163,33,1,66,17,4211,33,17,1,11,10,23,167,2,19,201,7,3,38,150,123,67,87,423,2668,17,3,5,7,17,14052,1156,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",5955,7411,686,693,1606,,2577,1776,1990,2093,1497,661,363,796,43,193,1326,5994,678,568,5250
2020-10-07 19:14,"https://web.archive.org/web/20201007231422/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-07,9,9,88,18,9,6,12,38,99,5,200,76,184,54,15,18,33,11,102,10,96,3,81,13,824,12,16,61,40,34,123,39,74,33,40,4,92,30,682,16,865,0,1,111,8,48,221,2,21,660,6,91,16,14,75,111,16,173,32,1,66,17,4251,31,17,1,11,18,23,172,2,20,202,7,4,38,155,123,66,88,424,2694,17,3,5,7,7,14250,1168,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",6032,7511,707,700,1638,,2617,1795,2022,2119,1513,668,372,806,45,201,1330,6117,684,576,5297
2020-10-09 10:32,"https://web.archive.org/web/20201009143242/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-08,9,11,92,18,9,7,10,40,104,5,201,80,183,54,15,16,31,11,102,10,91,3,80,13,831,13,16,63,40,35,128,39,76,34,40,4,92,30,702,17,863,1,1,114,8,49,224,3,21,709,6,99,16,15,77,112,16,174,31,1,66,14,4283,31,17,3,11,20,23,178,2,21,207,7,4,34,156,126,66,90,428,2732,17,3,5,8,7,14454,1169,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",6116,7611,727,709,1680,,2660,1812,2067,2135,1523,671,375,822,47,207,1337,6219,688,588,5368
2020-10-09 22:02,"https://web.archive.org/web/20201010020206/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-09,9,10,94,18,9,7,10,41,105,5,202,80,187,52,15,16,32,11,96,10,95,4,80,13,834,14,16,64,43,35,139,41,77,39,39,11,92,32,718,17,858,1,1,116,8,49,233,5,23,787,6,95,16,16,69,115,16,175,31,1,66,14,4332,31,17,3,11,20,24,179,2,21,209,7,4,34,161,126,69,89,430,2760,17,3,5,8,7,14682,1172,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",6201,7712,769,714,1715,,2716,1847,2087,2177,1551,674,378,823,47,213,1339,6318,694,598,5473
2020-10-10 15:58,"https://web.archive.org/web/20201010195853/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-10,8,11,95,18,9,7,10,36,104,6,203,79,190,54,15,16,32,12,97,10,96,11,81,13,838,16,16,67,43,36,140,42,77,37,39,11,91,31,730,17,867,0,1,116,8,48,236,5,23,816,6,93,16,16,70,118,16,179,31,1,66,14,4327,31,17,3,11,20,24,179,2,21,210,7,4,34,164,131,69,89,444,2779,17,3,5,9,18,14808,1171,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",6240,7787,781,721,1738,,2731,1868,2093,2198,1563,681,386,829,46,217,1345,6393,699,603,5505
2020-10-12 19:02,"https://web.archive.org/web/20201012230207/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-12,8,11,96,19,9,7,10,40,106,6,203,82,197,55,15,16,33,12,97,10,102,5,82,13,842,17,18,69,42,36,140,42,79,37,39,13,95,30,730,17,870,1,1,116,8,48,236,6,23,817,6,97,16,18,71,115,16,178,36,1,66,16,4329,31,17,3,11,19,25,194,2,23,212,7,4,34,167,135,70,92,446,2817,17,3,5,9,17,14931,1182,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",6290,7857,784,728,1744,,2748,1878,2113,2206,1559,676,385,894,47,216,1345,6459,702,606,5556
2020-10-13 20:26,"https://web.archive.org/web/20201014002622/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-13,8,15,101,19,9,7,11,44,107,7,203,82,220,57,15,16,38,18,97,11,105,5,86,13,848,18,18,72,52,36,141,43,79,37,40,13,96,30,752,17,873,1,1,117,8,48,237,9,24,827,6,99,16,19,77,118,16,179,40,1,65,16,4354,32,17,4,11,19,25,199,2,23,220,7,4,34,172,136,73,93,462,2836,17,3,5,10,19,15160,1185,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",6389,7977,794,740,1779,,2805,1905,2138,2226,1568,684,389,926,47,216,1353,6549,715,620,5660
2020-10-14 21:27,"https://web.archive.org/web/20201015012751/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-14,8,14,103,19,9,7,12,44,107,7,213,85,223,58,15,16,37,15,96,10,106,6,86,13,857,17,18,72,53,37,146,43,81,39,40,13,95,31,758,17,880,2,1,124,9,48,242,9,28,877,6,104,17,18,79,121,16,181,40,1,65,17,4390,31,16,4,11,19,26,198,2,24,220,7,4,34,174,140,73,93,487,2884,18,3,5,12,8,15394,1193,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",6500,8086,808,749,1830,,2853,1925,2175,2256,1613,693,388,912,51,218,1369,6686,721,623,5726
2020-10-16 10:10,"https://web.archive.org/web/20201016141046/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-15,8,15,103,19,9,7,12,47,107,7,218,88,224,63,15,17,39,27,100,10,105,7,88,13,941,18,35,71,61,36,145,43,81,37,40,15,97,30,778,17,887,2,1,128,9,50,246,9,29,940,6,102,17,18,76,125,16,185,44,1,65,18,4451,31,16,4,11,19,26,196,2,25,220,7,4,35,175,143,73,93,511,2969,18,3,5,10,8,15822,1203,"*Note (10/15/20): Late Wednesday a data slowdown in the processing of laboratory results to the statewide reporting system was noted. This slowdown started Tuesday and delayed the entry of some lab results by up to 15 hours. The issue was resolved yesterday and the processing of lab results is now operating normally. No data was lost. Today's count of cases includes a number of cases that would have been included in yesterday's total.
The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",6668,8273,881,770,1880,,2914,1968,2220,2289,1634,708,402,1037,54,219,1377,6833,720,633,5986
2020-10-16 20:59,"https://web.archive.org/web/20201017005941/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-16,8,17,107,19,9,7,12,47,107,7,217,91,229,61,15,16,40,23,101,9,123,9,91,13,948,23,45,71,59,37,147,43,83,38,40,18,104,30,790,18,897,2,1,126,9,50,248,9,29,932,6,106,17,18,103,128,16,190,43,2,65,18,4446,31,16,4,12,19,26,205,3,25,222,7,4,35,193,150,78,94,526,2987,17,3,5,10,8,16013,1215,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",6756,8371,886,785,1915,,2948,1997,2228,2312,1641,719,414,1054,54,217,1392,6949,725,638,6038
2020-10-18 16:54,"https://web.archive.org/web/20201018205401/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-17,8,19,113,22,11,7,12,50,109,8,219,92,228,66,15,16,40,22,101,10,116,10,93,13,963,23,64,71,58,37,148,43,85,38,40,18,102,30,809,18,895,2,1,129,10,50,248,9,29,938,6,107,17,18,74,126,17,190,41,2,66,18,4513,31,17,4,12,19,25,214,4,25,224,7,4,37,199,150,78,93,534,3032,17,3,5,13,8,16208,1218,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",6756,8371,886,785,1915,,2948,1997,2228,2312,1641,719,414,1054,54,217,1392,6949,725,638,6038
2020-10-19 21:05,"https://web.archive.org/web/20201020002531/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-19,8,20,112,22,11,8,12,52,107,9,218,96,234,67,15,16,43,19,101,9,129,10,91,13,975,26,63,71,61,43,149,43,85,39,46,31,109,31,804,18,905,1,2,132,11,50,250,9,29,929,6,116,17,19,76,132,17,192,41,2,66,19,4482,32,18,5,12,19,25,216,3,25,222,7,3,37,200,150,76,94,550,3044,17,3,5,16,19,16317,1215,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",6882,8545,890,804,1967,,3015,2022,2257,2340,1651,729,431,1101,57,223,1394,7113,742,643,6145
2020-10-20 16:34,"https://web.archive.org/web/20201020203431/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-20,8,23,114,22,13,8,12,55,108,9,227,97,243,76,16,17,44,19,101,9,141,10,92,13,982,25,84,72,61,43,149,43,88,39,46,33,109,33,818,18,905,1,4,139,11,52,254,11,29,941,6,129,17,19,79,137,17,206,42,2,71,18,4522,32,18,5,12,19,25,221,6,25,217,7,3,37,208,152,77,95,566,3080,17,5,5,20,18,16602,1217,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",6998,8702,902,820,2016,,3078,2067,2291,2380,1676,741,439,1094,58,223,1402,7278,758,655,6228
2020-10-21 20:11,"https://web.archive.org/web/20201022001150/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-21,8,24,115,23,11,8,13,55,111,9,230,98,245,77,17,17,47,19,113,9,135,11,92,13,992,26,91,72,66,43,149,43,88,39,46,33,112,33,832,18,906,1,5,148,11,55,257,11,29,956,6,137,19,19,75,140,17,207,61,2,71,18,4594,32,18,5,13,19,28,221,6,27,221,7,3,38,227,154,78,95,564,3140,17,6,5,23,8,16883,1221,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",7130,8846,907,828,2048,,3138,2114,2328,2407,1692,761,444,1123,63,225,1410,7428,771,652,6334
2020-10-22 16:37,"https://web.archive.org/web/20201022203736/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-22,8,25,117,23,11,8,13,58,111,9,235,103,276,76,17,17,50,21,114,10,133,11,99,14,995,25,103,74,66,47,150,44,90,39,46,32,113,32,844,18,913,1,5,147,11,55,260,11,29,984,7,143,18,20,79,145,17,223,63,2,69,20,4648,33,18,6,13,19,29,228,8,30,225,7,4,38,241,158,78,96,576,3203,19,6,5,20,7,17214,1225,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",7278,8997,939,844,2099,,3197,2157,2378,2454,1722,773,456,1134,64,229,1420,7586,783,663,6469
2020-10-24 11:46,"https://web.archive.org/web/20201024154605/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-23,8,25,120,23,11,8,13,57,114,8,243,103,293,81,17,18,55,22,113,10,137,11,100,14,1009,24,107,77,66,49,150,43,91,39,46,32,116,33,850,18,917,1,4,146,11,55,263,11,30,998,7,137,20,22,77,144,17,233,61,2,70,20,4686,33,17,6,13,19,30,229,8,30,224,8,4,39,252,157,79,95,584,3264,19,6,5,20,7,17434,1237,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",7383,9106,945,861,2117,,3237,2186,2416,2505,1737,786,463,1126,67,232,1426,7716,783,664,6546
2020-10-24 20:41,"https://web.archive.org/web/20201025004117/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-24,8,25,124,19,11,8,13,56,114,8,247,105,298,86,22,18,57,25,122,11,136,13,100,19,1017,25,110,79,67,51,151,43,92,39,46,32,115,33,868,18,916,1,4,145,12,55,264,11,32,991,10,137,21,24,77,149,17,233,67,2,70,20,4701,33,17,10,13,19,30,229,7,30,224,7,4,38,256,157,78,94,593,3288,19,6,5,20,19,17586,1236,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",7447,9191,948,873,2148,,3253,2216,2438,2505,1740,785,481,1147,70,233,1431,7791,784,666,6611
2020-10-26 20:44,"https://web.archive.org/web/20201027004447/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-26,8,26,124,19,11,8,13,60,115,9,243,105,317,87,23,22,56,24,129,11,139,14,101,21,1025,30,111,78,70,51,150,43,92,38,47,32,119,33,871,17,926,1,4,145,13,57,276,11,32,984,10,139,21,22,78,156,18,246,71,2,73,20,4709,32,19,9,20,19,31,242,7,31,226,7,4,39,258,158,78,94,609,3303,19,6,5,20,20,17762,1235,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",7526,9278,958,889,2195,,3281,2230,2452,2524,1747,785,482,1177,70,235,1433,7880,801,668,6675
2020-10-27 20:43,"https://web.archive.org/web/20201028004324/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-27,8,27,125,20,12,10,13,64,118,10,246,106,330,91,21,22,63,31,127,12,142,15,105,17,1039,33,119,77,71,54,152,44,93,39,47,33,117,34,890,17,926,1,4,150,13,56,277,16,34,1003,10,140,21,23,79,161,18,250,74,2,76,20,4743,32,19,14,24,19,29,245,10,32,233,7,4,41,259,162,80,95,623,3376,19,6,5,26,19,18070,1246,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",7660,9436,974,912,2247,,3344,2255,2495,2563,1774,796,490,1194,73,240,1446,8057,814,678,6762
2020-10-28 21:07,"https://web.archive.org/web/20201029010722/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-28,8,28,130,21,13,10,14,66,120,10,249,108,348,91,24,21,72,39,128,14,143,21,106,18,1040,32,123,79,69,54,159,43,92,40,49,32,116,33,894,17,930,3,4,154,12,57,290,19,35,1012,9,149,22,25,81,165,18,254,80,3,75,22,4820,32,20,15,22,19,30,244,10,33,237,9,6,47,272,167,82,97,626,3442,19,6,5,29,7,18389,1261,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",7811,9598,980,935,2283,,3407,2300,2551,2607,1809,799,492,1206,74,241,1457,8244,826,689,6858
2020-10-29 21:53,"https://web.archive.org/web/20201030015318/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-29,8,29,136,21,13,11,14,69,119,10,257,107,362,95,23,22,82,38,138,15,150,23,106,18,1065,31,125,81,71,54,171,44,92,40,48,31,116,33,900,17,940,3,4,158,12,56,292,21,37,1010,9,153,25,25,83,174,18,262,87,3,76,22,4872,32,20,14,24,19,30,253,9,38,242,8,7,45,285,168,90,99,646,3607,18,6,5,22,9,18823,1293,"*Note on daily counts (10/29/20): Statewide network connectivity issues delayed today's data pull past the 10AM cutoff. This resulted in some cases that would have normally been counted in tomorrow's totals being included today.
The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",7995,9814,1014,962,2351,,3477,2343,2607,2642,1838,807,496,1300,78,246,1483,8478,836,700,7002
2020-10-30 18:52,"https://web.archive.org/web/20201030225207/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-30,8,28,146,21,13,11,18,69,120,10,270,110,365,97,22,22,85,34,145,15,151,22,105,18,1108,31,126,81,71,55,164,45,95,40,48,31,117,33,904,17,951,2,4,159,12,56,300,21,36,1014,10,154,25,26,83,181,18,263,94,6,75,22,4873,32,20,14,24,19,33,255,10,38,251,8,7,47,286,173,91,101,654,3622,18,6,5,23,7,19000,1302,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",8052,9887,1061,971,2362,,3511,2367,2636,2648,1853,813,506,1333,79,248,1487,8536,838,703,7109
2020-11-01 11:08,"https://web.archive.org/web/20201101160812/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-10-31,8,30,150,20,13,11,20,67,123,11,276,112,373,101,23,24,86,37,145,15,153,22,108,20,1119,31,133,82,70,56,164,47,95,40,48,31,119,33,925,17,955,2,4,160,13,56,304,21,36,1026,10,156,27,27,85,181,18,266,97,5,77,22,4881,32,21,17,24,19,34,259,10,40,259,8,7,47,290,178,90,101,674,3655,18,6,5,24,21,19226,1309,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",8166,9991,1069,989,2399,,3544,2400,2672,2675,1879,822,512,1334,81,249,1498,8672,849,725,7152
2020-11-02 21:43,"https://web.archive.org/web/20201103024303/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-02,8,27,153,25,13,11,20,67,129,15,276,114,391,108,23,25,86,40,145,15,148,24,109,20,1137,32,136,85,71,56,161,47,95,38,49,32,124,32,921,17,960,1,4,167,14,56,316,22,36,1023,13,158,26,28,79,191,17,279,100,4,77,23,4923,34,23,15,27,19,34,258,10,36,267,9,7,47,291,178,95,107,672,3691,19,6,5,24,21,19437,1321,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",8266,10095,1076,1026,2436,,3575,2415,2701,2703,1881,831,514,1355,79,249,1497,8799,855,752,7206
2020-11-03 21:47,"https://web.archive.org/web/20201104014742/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-03,8,28,160,22,14,11,22,76,127,16,282,118,411,111,25,25,91,39,145,15,158,24,110,27,1164,33,136,84,72,60,170,54,95,39,51,31,130,32,923,17,964,1,4,169,14,57,325,23,38,1076,12,161,24,30,82,212,17,282,99,4,77,23,4932,34,24,28,28,20,37,266,12,36,271,10,7,47,313,182,96,106,683,3710,20,6,5,24,21,19768,1330,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",8403,10257,1108,1032,2481,,3627,2455,2745,2753,1905,853,531,1386,84,249,1511,8954,864,758,7348
2020-11-04 21:02,"https://web.archive.org/web/20201105020253/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-04,8,29,166,23,14,11,26,79,127,17,304,120,423,113,25,25,103,39,159,15,157,25,110,28,1185,34,138,87,85,60,181,55,95,39,51,32,131,35,928,17,984,1,5,172,14,61,340,27,40,1104,12,170,24,30,83,214,18,287,113,4,79,23,4944,34,25,20,27,20,39,255,12,37,269,9,7,48,324,182,95,108,691,3743,21,11,5,26,8,20064,1340,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",8539,10386,1139,1050,2517,,3706,2496,2777,2780,1924,860,533,1421,90,246,1523,9114,879,770,7442
2020-11-05 22:46,"https://web.archive.org/web/20201106024633/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-05,8,33,170,20,15,12,26,79,126,15,310,130,440,115,28,25,125,46,165,15,157,26,112,29,1197,38,141,87,86,62,184,56,96,40,58,32,145,36,954,17,1003,1,4,175,14,64,345,26,41,1165,12,174,25,32,84,210,19,295,118,4,78,23,4938,36,31,21,34,21,40,253,12,45,273,8,5,48,332,189,100,110,697,3802,21,35,5,24,9,20457,1342,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",8718,10564,1175,1076,2569,,3783,2545,2814,2831,1953,866,535,1485,98,245,1547,9281,892,776,7618
2020-11-06 21:40,"https://web.archive.org/web/20201107014054/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-06,8,34,172,25,15,12,27,76,127,15,314,142,475,117,29,26,136,42,166,15,158,26,116,31,1226,37,150,87,87,67,187,58,99,39,59,32,145,44,983,17,1015,1,4,187,15,68,354,31,40,1217,12,184,26,31,86,224,19,308,122,5,78,25,4944,36,32,20,34,21,42,255,12,45,286,9,5,50,345,192,101,112,723,3859,22,84,5,23,10,20940,1358,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",8985,10745,1210,1103,2655,,3900,2604,2860,2881,1982,878,540,1537,106,248,1573,9547,901,787,7778
2020-11-08 11:07,"https://web.archive.org/web/20201108160744/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-07,8,33,187,25,14,12,28,79,128,14,325,144,487,119,32,28,149,43,146,15,167,27,118,33,1252,38,150,89,80,67,188,57,100,39,59,33,143,49,1011,18,1022,1,4,198,13,68,359,32,41,1236,12,189,26,31,86,233,19,323,107,5,80,25,4985,35,36,20,33,22,46,257,12,46,285,10,5,50,355,195,103,115,734,3876,23,85,5,23,9,21209,1361,"Note: Public Use Datasets were not updated for 2020-11-07, so counts for cases and deaths by county were compiled directly from the dashboard
The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",9113,10880,1216,1114,2699,,3967,2647,2881,2921,2021,888,548,1523,108,252,1585,9701,911,788,7864
2020-11-09 17:46,"https://web.archive.org/web/20201109214600/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-09,8,35,194,29,14,14,29,79,134,14,318,146,496,125,32,32,162,44,152,15,174,28,127,32,1286,39,151,90,82,71,189,62,99,40,60,33,145,51,1012,18,1026,1,4,197,13,68,366,32,41,1262,13,187,28,31,87,247,19,319,113,6,80,26,5013,35,37,21,32,22,43,250,16,49,286,9,5,49,352,200,106,126,747,3930,23,85,5,24,12,21504,1371,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",9230,11028,1246,1138,2752,,4000,2688,2902,2951,2044,893,553,1583,114,253,1591,9846,918,796,7986
2020-11-10 21:10,"https://web.archive.org/web/20201111011014/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-10,8,40,204,30,14,17,31,81,136,17,322,150,503,130,30,32,194,49,158,15,177,29,135,34,1302,41,161,91,88,71,194,64,105,43,61,33,153,51,1039,18,1087,1,4,201,14,68,377,36,41,1277,13,191,28,35,87,257,19,326,117,7,87,27,5028,37,36,22,33,22,42,260,16,52,299,9,5,49,361,201,108,128,763,3994,23,98,5,24,9,21975,1397,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",9440,11271,1264,1156,2810,,4087,2755,2956,3022,2075,910,564,1640,118,259,1631,10069,936,810,8152
2020-11-11 16:24,"https://web.archive.org/web/20201111212429/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-11,8,40,213,30,14,17,32,83,136,20,328,158,533,130,29,31,219,51,157,17,186,40,136,36,1334,41,165,102,86,73,200,63,108,45,63,33,157,56,1067,18,1135,1,4,210,15,70,381,37,42,1331,13,202,28,35,90,266,19,339,119,8,98,29,5093,37,38,22,32,22,46,284,16,53,314,9,6,49,394,206,111,133,779,4050,23,104,5,25,9,22587,1412,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",9679,11578,1330,1180,2864,,4231,2845,3042,3101,2131,947,575,1671,125,261,1662,10326,947,824,8442
2020-11-12 21:01,"https://web.archive.org/web/20201113030139/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-12,8,42,217,30,16,15,31,92,137,21,332,158,533,130,33,30,245,49,162,17,191,46,149,44,1370,41,164,103,90,76,206,68,122,51,63,33,157,55,1085,18,1167,1,4,216,15,69,385,37,44,1360,16,212,28,37,94,272,19,335,124,9,101,29,5125,37,38,23,31,22,51,311,17,53,318,8,6,49,404,207,115,137,782,4055,24,102,5,25,9,22958,1416,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",9837,11738,1383,1206,2913,,4308,2872,3100,3143,2159,967,593,1697,134,264,1664,10484,958,833,8621
2020-11-13 20:00,"https://web.archive.org/web/20201114000529/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-13,8,45,223,31,16,20,31,93,141,20,348,165,548,137,35,32,260,65,160,18,221,54,156,46,1403,54,172,108,88,80,207,74,124,54,63,33,188,56,1106,19,1260,1,4,219,15,73,390,37,43,1387,16,211,32,38,97,284,19,372,124,9,105,29,5194,41,38,26,39,22,55,326,16,57,340,8,8,49,419,214,117,135,810,4074,24,102,5,26,9,23621,1420,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",10090,12054,1477,1236,3003,,4408,2953,3180,3216,2211,993,618,1803,139,265,1668,10727,970,846,9006
2020-11-14 16:38,"https://web.archive.org/web/20201114213843/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-14,10,48,232,39,16,23,41,93,142,20,347,168,556,140,33,31,288,69,165,16,226,56,156,44,1430,57,173,111,87,83,221,79,126,51,63,35,192,57,1116,20,1281,3,4,230,16,75,393,37,44,1391,17,215,33,38,98,307,19,377,129,10,110,31,5219,41,39,26,39,22,58,329,16,58,345,9,8,51,421,217,118,136,816,4122,25,105,5,27,9,23979,1423,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",10241,12220,1518,1257,3047,,4476,2986,3222,3259,2243,1011,627,1851,154,269,1679,10906,972,875,9124
2020-11-16 19:25,"https://web.archive.org/web/20201116232524/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-16,11,47,234,44,17,29,45,97,142,21,340,173,564,142,34,38,297,70,166,17,227,52,156,43,1443,72,167,117,92,85,229,87,128,51,65,35,213,57,1152,20,1279,3,4,234,19,75,414,37,44,1406,18,225,37,38,98,321,19,382,135,12,110,34,5246,40,40,23,42,22,55,339,20,58,344,10,8,51,423,223,119,136,813,4164,27,172,5,26,9,24378,1437,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",10439,12383,1556,1281,3094,,4530,3035,3276,3311,2273,1020,632,1926,159,269,1742,11072,974,896,9266
2020-11-17 20:13,"https://web.archive.org/web/20201118031212/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-17,11,48,240,44,18,33,45,97,143,20,353,177,570,152,35,36,313,72,175,17,239,58,156,42,1467,82,170,127,104,87,241,92,141,53,66,35,218,58,1165,22,1315,3,4,246,19,76,416,39,47,1427,19,229,38,38,103,330,19,385,143,12,114,36,5268,41,40,23,45,21,56,379,20,59,350,11,8,51,423,224,119,136,821,4191,26,174,5,26,9,24806,1445,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",10637,12584,1585,1297,3132,,4600,3088,3332,3368,2312,1041,637,1999,163,270,1750,11272,981,921,9449
2020-11-18 20:15,"https://web.archive.org/web/20201119015152/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-18,11,55,253,46,18,34,46,100,143,20,365,181,581,153,38,36,335,73,181,17,243,59,157,43,1492,82,181,129,109,88,242,96,151,54,68,36,221,60,1166,22,1350,10,4,245,20,79,424,41,48,1439,17,242,37,38,105,322,19,401,147,12,115,36,5299,41,38,26,45,21,54,457,20,62,364,10,8,52,436,225,122,137,815,4201,27,215,5,26,10,25252,1451,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",10837,12806,1609,1318,3170,,4674,3164,3381,3439,2355,1069,657,2025,164,273,1774,11538,995,935,9573
2020-11-19 21:09,"https://web.archive.org/web/20201120020959/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-19,11,60,272,47,18,34,46,102,144,22,371,184,586,157,39,37,346,73,183,17,232,62,158,44,1527,86,186,134,109,90,243,96,157,55,68,36,222,60,1185,22,1353,10,4,248,20,78,424,42,49,1466,17,251,38,39,107,337,21,404,146,12,123,34,5367,43,38,26,47,21,54,461,21,67,367,9,9,52,446,227,122,140,832,4263,28,216,5,28,10,25643,1473,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",11004,12998,1641,1339,3219,,4742,3223,3434,3489,2392,1085,667,2053,167,273,1787,11700,1002,939,9775
2020-11-20 15:55,"https://web.archive.org/web/20201120205544/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-20,11,61,276,48,19,34,52,103,145,27,374,189,594,163,40,36,355,76,184,18,230,70,161,44,1571,96,185,144,106,91,244,99,154,56,69,36,228,60,1191,22,1425,10,4,248,23,79,438,43,49,1497,19,257,38,40,110,346,21,418,148,12,125,35,5376,44,37,25,46,21,54,468,21,71,372,9,9,54,457,229,120,142,847,4273,29,211,5,27,10,26004,1475,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",11143,13169,1692,1358,3262,,4807,3285,3471,3519,2413,1094,687,2108,169,278,1795,11906,1011,953,9892
2020-11-21 18:50,"https://web.archive.org/web/20201121235015/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-21,12,64,282,47,21,35,55,103,145,31,370,194,592,164,38,38,361,75,184,22,233,74,164,44,1620,99,185,148,105,95,245,102,152,55,67,36,231,60,1204,23,1449,10,4,253,22,81,444,43,53,1520,19,273,39,42,110,356,20,417,149,12,132,36,5415,46,35,25,46,21,55,482,21,74,372,11,9,53,460,233,120,145,862,4291,30,209,5,27,10,26316,1478,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",11264,13327,1725,1376,3311,,4875,3318,3493,3560,2435,1101,698,2149,171,278,1806,12035,1026,964,10036
2020-11-24 10:30,"https://web.archive.org/web/20201124153002/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-23,13,64,288,58,19,42,57,112,151,36,382,200,608,165,40,39,371,76,185,22,234,75,166,47,1672,111,188,147,112,98,248,114,151,53,67,36,239,60,1233,23,1446,10,4,261,22,87,450,43,53,1504,18,284,39,42,111,366,20,423,149,15,135,34,5484,45,35,25,48,21,68,517,26,79,372,12,11,54,460,236,119,144,869,4321,29,213,5,27,10,26748,1482,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",11450,13530,1768,1396,3374,,4932,3360,3538,3614,2466,1121,719,2228,176,286,1814,12211,1035,966,10263
2020-11-24 21:24,"https://web.archive.org/web/20201125022435/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-24,13,67,299,56,19,41,56,119,148,38,385,202,623,169,44,37,410,77,182,22,237,79,167,48,1689,111,197,166,113,99,257,122,153,52,67,36,240,60,1245,24,1480,10,4,270,23,89,464,46,58,1572,18,292,40,43,113,374,22,433,149,14,140,33,5514,46,35,25,48,21,71,562,26,79,375,12,11,55,467,238,123,145,877,4347,30,236,5,26,10,27240,1492,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",11684,13776,1780,1415,3447,,5014,3419,3619,3690,2492,1145,750,2249,189,288,1848,12494,1042,974,10405
2020-11-25 20:53,"https://web.archive.org/web/20201126015353/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-25,13,68,300,59,23,42,57,123,148,41,405,204,624,176,45,41,426,78,181,22,240,86,175,55,1734,112,199,171,113,102,260,134,157,57,67,37,240,60,1265,23,1546,11,4,278,28,101,467,47,62,1587,18,297,41,44,126,375,22,441,148,14,142,35,5527,46,36,25,48,21,75,563,25,79,375,13,11,55,473,243,127,149,891,4365,31,236,5,27,11,27654,1498,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",11861,13981,1812,1441,3495,,5090,3459,3681,3753,2532,1162,762,2279,200,291,1862,12697,1058,989,10557
2020-11-27 09:59,"https://web.archive.org/web/20201128145904/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-27,13,74,309,63,21,43,57,123,154,40,415,204,624,177,48,44,452,77,181,22,239,90,174,59,1767,109,200,174,112,103,258,130,157,55,66,36,238,72,1278,25,1547,11,4,276,30,90,477,49,71,1586,18,298,40,48,129,394,22,445,148,15,144,35,5522,47,37,26,49,22,77,567,24,79,375,15,11,54,488,246,127,151,888,4388,30,233,5,29,10,27860,1499,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",11951,14108,1801,1451,3539,,5136,3498,3709,3765,2545,1176,773,2268,207,291,1862,12845,1065,995,10595
2020-11-28 20:45,"https://web.archive.org/web/20201129014517/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-28,13,75,311,62,24,44,60,123,155,45,412,203,624,177,55,44,475,80,188,22,249,90,173,62,1807,112,203,175,111,104,264,130,157,54,66,36,243,75,1278,26,1561,12,4,275,27,89,479,49,71,1586,18,305,44,48,129,411,22,453,139,14,143,36,5541,47,37,26,49,22,79,605,24,80,376,15,10,54,485,247,132,151,913,4408,30,232,5,29,12,28131,1498,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",12065,14235,1831,1470,3572,,5181,3539,3750,3789,2575,1189,783,2283,213,294,1866,12983,1069,1002,10704
2020-11-30 18:22,"https://web.archive.org/web/20201130222534/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-11-30,14,77,316,59,31,42,66,128,154,49,414,208,641,179,57,47,477,81,205,22,275,90,173,74,1834,115,207,175,126,104,278,135,158,42,68,36,242,76,1277,24,1576,12,5,281,28,88,480,50,76,1591,18,308,44,49,134,429,22,459,147,15,143,37,5583,47,43,26,49,26,82,607,25,84,375,15,12,54,492,249,134,151,938,4427,30,231,5,29,11,28493,1504,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",1221,14417,1855,1488,3590,,5231,3590,3804,3832,2620,1210,810,2318,219,297,1876,13172,1073,1015,10841
2020-12-01 19:44,"https://web.archive.org/web/20201202004403/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-01,15,76,346,71,32,40,70,138,157,51,426,210,647,181,66,53,504,80,204,22,276,89,175,84,1862,115,215,181,123,104,281,133,174,42,69,37,246,81,1293,26,1650,14,5,294,33,92,489,50,80,1616,18,317,45,52,135,428,22,480,146,15,149,41,5657,47,44,28,50,28,83,657,24,85,385,17,11,58,567,250,148,155,965,4467,30,235,5,32,17,29211,1513,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",12501,14834,1876,1517,3642,,5361,3700,3898,3947,2702,1243,865,2336,230,306,1894,13507,1091,1037,11146
2020-12-02 21:06,"https://web.archive.org/web/20201203020630/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-02,17,79,353,82,33,41,81,140,157,52,432,214,659,181,70,57,516,81,203,22,298,98,181,88,1897,116,217,186,122,105,295,129,182,42,87,38,247,82,1295,26,1668,14,5,296,36,102,487,53,85,1644,18,324,45,53,139,431,22,488,141,15,152,42,5713,47,53,27,53,29,87,665,25,87,389,20,11,58,585,254,147,155,974,4522,31,246,5,33,12,29689,1538,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",12722,15045,1922,1534,3674,,5448,3773,3974,4013,2734,1262,891,2386,236,307,1928,13714,1102,1068,11334
2020-12-03 15:19,"https://web.archive.org/web/20201203201955/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-03,34,80,360,87,34,47,72,151,166,56,454,219,687,182,79,57,526,86,203,22,316,111,191,90,1946,118,226,191,128,108,298,131,192,42,95,38,254,83,1296,28,1757,14,5,311,39,99,495,52,87,1694,18,323,47,53,145,430,22,494,139,16,152,43,5781,49,74,27,58,33,91,705,25,88,395,22,10,54,610,257,151,155,983,4584,31,343,5,36,14,30500,1566,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",13109,15403,1988,1572,3737,,5544,3858,4088,4111,2807,1322,988,2473,243,318,2022,14125,1114,1087,11591
2020-12-04 20:45,"https://web.archive.org/web/20201205014536/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-04,51,81,368,85,40,47,80,155,168,54,479,218,709,191,85,58,533,86,198,23,322,114,202,91,1984,119,235,200,122,118,305,133,190,49,99,37,257,91,1306,28,1839,14,5,317,40,99,498,54,88,1765,19,328,49,54,151,435,22,501,135,17,155,47,5902,51,81,28,58,34,95,774,25,89,398,28,10,58,612,261,155,155,992,4674,31,328,5,38,11,31236,1589,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",13441,15775,2020,1598,3788,,5669,3962,4163,4208,2885,1387,1067,2509,248,326,2079,14527,1119,1123,11814
2020-12-05 17:10,"https://web.archive.org/web/20201205221014/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-05,51,81,371,88,51,47,80,155,169,51,488,219,713,203,87,59,537,89,198,23,323,116,198,92,2027,121,246,207,122,121,311,134,181,48,99,37,261,91,1310,28,1847,13,5,313,40,104,512,55,93,1773,19,331,48,54,150,434,22,514,135,17,155,47,5944,51,82,28,62,34,96,793,27,92,408,31,10,57,627,264,157,155,1018,4678,31,326,5,38,12,31540,1594,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",13568,15915,2057,1605,3819,,5712,4022,4200,4235,2915,1406,1091,2535,250,327,2081,14685,1136,1127,11934
2020-12-07 15:59,"https://web.archive.org/web/20201207205946/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-07,52,83,378,92,48,48,81,156,168,51,491,219,724,218,96,67,553,88,198,23,328,121,204,93,2113,123,249,207,122,124,315,139,179,50,107,38,262,97,1311,28,1850,14,5,321,40,106,514,56,93,1791,19,338,48,56,152,443,22,514,133,18,156,47,6035,51,93,28,63,40,96,831,28,95,409,38,12,57,632,273,161,155,1023,4702,31,326,5,37,13,32014,1605,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",13772,16157,2085,1635,3882,,5790,4093,4246,4291,2962,1441,1114,2560,253,330,2102,14881,1143,1132,12173
2020-12-08 16:22,"https://web.archive.org/web/20201208212217/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-08,53,87,385,99,49,48,89,164,172,56,491,222,737,219,101,70,581,90,192,25,338,128,217,99,2143,125,259,216,121,125,343,140,193,51,110,38,266,137,1322,28,1913,14,5,326,46,108,526,56,96,1822,21,344,52,57,159,450,22,547,131,20,157,50,6099,51,97,27,68,44,99,856,29,94,422,39,14,57,639,278,160,156,1028,4766,31,422,5,37,12,32781,1615,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",14127,16510,2144,1650,3962,,5918,4196,4350,4395,3039,1489,1175,2607,265,346,2191,15259,1144,1161,12415
2020-12-09 17:44,"https://web.archive.org/web/20201209224400/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-09,52,87,391,108,56,48,90,167,171,58,495,225,748,219,103,75,595,96,194,25,346,128,217,104,2202,127,260,214,121,127,361,146,205,53,111,38,270,137,1335,29,1928,14,5,329,50,108,528,56,100,1849,20,344,51,57,166,456,22,555,131,24,158,53,6160,53,96,27,69,44,103,870,31,94,427,39,14,59,658,276,167,156,1033,4795,31,422,5,38,13,33218,1624,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",14293,16710,2215,1669,3992,,5982,4255,4402,4461,3079,1529,1197,2652,272,349,2222,15455,1151,1169,12600
2020-12-10 16:59,"https://web.archive.org/web/20201210205950/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-10,52,87,396,109,55,48,90,172,173,59,497,224,770,220,103,77,606,97,198,23,364,129,221,106,2258,129,265,213,120,130,369,156,211,54,111,39,278,138,1346,29,1935,14,5,335,51,110,531,56,104,1869,20,345,50,58,169,459,22,567,131,24,158,53,6203,52,96,27,73,43,106,873,33,94,435,44,14,59,693,280,173,156,1039,4794,31,422,5,38,12,33583,1623,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",14411,16911,2261,1689,4006,,6040,4295,4449,4507,3126,1559,1228,2684,273,352,2230,15628,1172,1161,12767
2020-12-11 19:30,"https://web.archive.org/web/20201212013007/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-11,52,87,397,109,56,47,90,176,184,61,505,228,795,221,104,78,618,98,198,23,372,130,221,106,2299,129,270,213,125,136,372,169,208,55,111,39,281,145,1350,30,1979,15,5,334,51,113,538,59,105,1883,20,349,49,61,171,463,25,564,132,27,159,55,6288,52,96,27,77,44,117,892,35,97,451,44,14,60,709,284,180,166,1047,4804,31,430,5,41,16,34052,1623,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",14599,17151,2302,1702,4044,,6112,4360,4500,4569,3160,1587,1284,2734,280,356,2261,15884,1172,1177,12922
2020-12-12 20:06,"https://web.archive.org/web/20201213010626/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-12,52,88,399,110,57,47,90,175,184,61,509,227,796,222,111,79,633,98,203,23,373,134,217,111,2340,130,273,218,127,144,368,171,217,55,111,39,283,145,1354,29,2004,15,5,346,52,112,549,61,106,1896,20,355,50,61,170,464,22,569,136,25,161,55,6318,51,97,28,77,44,119,895,37,98,456,44,16,60,709,283,188,178,1051,4813,31,488,5,41,15,34379,1632,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",14782,17288,2309,1716,4056,,6162,4424,4538,4632,3204,1607,1305,2735,286,355,2323,16076,1177,1180,12982
2020-12-14 18:30,"https://web.archive.org/web/20201214233007/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-14,52,90,413,117,61,49,91,175,190,61,512,233,807,227,111,85,636,104,204,23,374,144,218,117,2419,131,277,218,129,150,364,182,216,56,111,42,287,144,1367,29,2022,15,5,347,54,113,555,60,105,1898,21,358,48,61,178,469,22,580,136,25,160,57,6362,52,100,28,86,44,119,905,43,97,461,48,15,63,729,289,189,190,1062,4836,31,480,5,43,13,34795,1644,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",14950,17499,2346,1732,4101,,6228,4477,4588,4701,3242,1626,1312,2788,289,359,2341,16231,1181,1204,13190
2020-12-15 17:32,"https://web.archive.org/web/20201215223231/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-15,52,91,419,119,65,48,94,180,202,64,513,235,834,230,113,85,660,106,207,23,379,150,227,123,2438,131,280,226,138,173,370,185,241,57,113,42,290,145,1388,29,2081,15,5,354,56,118,565,60,107,1929,21,363,49,62,179,473,22,585,135,25,176,59,6432,52,101,28,86,43,122,932,43,99,468,48,16,69,737,291,193,196,1079,4895,32,527,5,41,17,35456,1665,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",15235,17840,2381,1765,4155,,6324,4559,4682,4791,3314,1667,1385,2814,293,364,2398,16551,1192,1222,13436
2020-12-16 16:46,"https://web.archive.org/web/20201216214648/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-16,52,91,431,121,65,48,94,182,203,65,521,236,856,233,113,88,672,108,211,23,381,154,230,126,2489,131,283,233,146,178,373,186,254,57,113,42,293,163,1399,31,2122,15,10,372,56,119,575,60,109,1966,21,368,53,65,178,480,22,591,142,25,176,80,6480,52,102,28,87,45,123,947,46,101,472,51,16,72,785,325,197,201,1094,4928,38,527,5,43,18,36063,1669,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",15467,18145,2451,1782,4218,,6409,4646,4771,4871,3384,1710,1420,2852,299,376,2430,16903,1205,1234,13616
2020-12-17 20:24,"https://web.archive.org/web/20201218012443/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-17,55,92,436,123,67,49,94,183,208,72,527,239,866,236,118,91,702,119,214,23,387,154,234,127,2557,132,286,234,150,179,376,192,257,56,121,43,298,167,1419,31,2149,15,9,381,57,126,581,61,109,1995,22,375,58,65,180,478,22,606,144,26,181,79,6540,52,111,28,89,46,125,944,49,104,483,53,17,77,800,327,200,205,1104,4954,41,534,5,42,17,36580,1686,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",15660,18412,2508,1803,4260,,6501,4709,4840,4938,3407,1738,1446,2938,302,380,2475,17198,1227,1249,13749
2020-12-18 18:25,"https://web.archive.org/web/20201218232535/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-18,54,93,445,126,67,49,95,187,212,74,539,240,879,242,120,91,703,120,214,23,388,157,249,127,2598,136,288,235,153,180,375,193,254,56,119,42,298,170,1443,32,2162,15,9,384,59,128,590,61,109,2023,21,380,61,66,182,480,24,610,147,29,180,78,6597,52,110,28,90,46,125,956,50,107,481,56,17,79,802,328,202,204,1109,4968,41,543,5,43,16,36919,1694,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",15787,18589,2543,1816,4292,,6554,4751,4872,4982,3443,1761,1454,2994,303,385,2501,17381,1243,1256,13850
2020-12-20 16:25,"https://web.archive.org/web/20201220212506/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-19,53,95,450,128,69,49,94,185,214,72,539,252,892,244,118,95,711,121,209,23,391,159,243,126,2631,142,290,240,154,172,381,198,264,59,119,43,300,173,1446,32,2174,14,13,390,60,128,594,61,109,2024,21,383,62,68,190,482,24,620,147,29,179,84,6651,55,110,29,93,48,129,971,47,108,483,59,16,80,807,331,209,206,1117,4976,41,543,5,43,15,37204,1694,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",15904,18730,2570,1835,4309,,6594,4795,4903,5015,3472,1779,1472,3030,304,386,2510,17548,1251,1258,13947
2020-12-21 21:21,"https://web.archive.org/web/20201222022129/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-21,53,96,465,130,69,50,93,185,213,73,552,254,910,251,118,96,713,126,210,23,399,165,248,129,2670,141,289,242,166,176,380,196,261,59,119,42,304,174,1448,32,2197,15,13,400,61,130,610,61,110,2043,22,390,62,71,202,500,26,640,145,31,180,84,6767,55,112,29,94,48,130,989,49,110,496,65,16,81,824,338,212,210,1119,5007,40,547,5,42,14,37712,1705,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",16102,19011,2599,1850,4340,,6686,4873,4958,5077,3521,1813,1486,3108,306,389,2531,17792,1265,1264,14165
2020-12-22 23:53,"https://web.archive.org/web/20201223045302/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-22,53,101,473,137,73,50,94,188,212,80,560,256,920,253,119,102,738,128,211,24,403,169,251,136,2700,143,289,246,168,185,382,192,275,64,120,42,307,174,1460,33,2219,15,13,410,64,129,619,62,112,2052,22,400,64,72,212,496,29,645,146,36,195,89,6831,55,113,29,97,49,134,961,49,108,500,66,16,83,837,338,218,216,1133,5037,41,560,5,43,13,38144,1716,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",16296,19232,2616,1864,4358,,6771,4941,5012,5140,3561,1831,1530,3136,317,390,2583,18033,1277,1277,14267
2020-12-23 22:24,"https://web.archive.org/web/20201224033428/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-23,53,105,476,139,75,53,94,188,224,85,561,256,919,253,120,103,747,129,213,24,403,171,253,137,2733,146,288,254,168,187,384,195,278,64,123,43,309,175,1462,32,2218,15,13,420,62,130,623,61,112,2064,24,403,67,73,214,495,28,651,145,36,180,88,6850,56,114,29,99,49,134,980,48,110,525,79,16,85,861,338,333,214,1132,5049,43,572,5,42,14,38521,1718,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",16473,19413,2635,1880,4367,,6824,4998,5091,5204,3599,1844,1548,3166,322,394,2619,18295,1291,1282,14318
2020-12-26 22:22,"https://web.archive.org/web/20201227032238/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-26,54,109,479,147,75,53,86,192,235,91,579,258,929,254,121,105,761,131,219,24,408,176,257,142,2786,155,291,262,170,190,383,201,298,68,121,43,319,180,1460,32,2250,15,15,423,62,137,631,64,113,2101,22,408,73,74,223,503,30,649,153,37,181,89,6938,57,120,29,100,48,139,968,51,109,528,83,16,89,861,340,335,217,1141,5094,42,596,5,42,12,39057,1740,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",16721,19692,2644,1896,4404,,6898,5070,5142,5292,3671,1884,1597,3203,331,407,2680,18602,1306,1292,14439
2020-12-28 22:57,"https://web.archive.org/web/20201229035741/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-28,54,111,484,141,77,53,88,196,232,92,581,263,931,255,122,107,771,134,219,23,409,179,256,144,2813,161,293,263,170,195,386,205,296,66,122,44,330,180,1461,32,2266,15,15,426,68,136,633,68,116,2099,22,413,72,74,228,508,30,657,153,37,180,89,7031,56,122,29,107,48,141,968,51,111,530,84,17,89,867,349,338,217,1153,5106,42,602,5,48,13,39368,1744,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",16855,19580,2663,1905,4429,,6944,5110,5189,5329,3697,1907,1619,3238,334,409,2686,18720,1312,1295,14612
2020-12-30 23:54,"https://web.archive.org/web/20201230165430/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-29,55,127,492,147,88,53,88,214,236,93,582,263,930,259,125,108,817,136,223,23,414,183,276,146,2848,160,293,269,171,197,392,202,298,64,122,44,333,182,1487,34,2293,15,15,434,72,136,645,65,117,2111,22,414,72,75,231,519,31,673,161,38,182,88,7112,56,121,29,108,47,142,975,53,112,534,86,20,93,899,351,338,220,1170,5136,43,618,5,53,13,39917,1754,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",17107,20118,2692,1923,4479,,7038,5202,5266,5417,3749,1919,1633,3291,352,418,2732,18981,1321,1315,14798
2020-12-30 17:37,"https://web.archive.org/web/20201230223701/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2020-12-30,56,129,498,157,89,55,86,216,239,94,590,268,938,264,127,115,829,136,230,24,415,188,276,149,2880,160,294,271,171,198,392,202,313,70,122,44,341,185,1487,33,2314,15,15,439,73,136,670,65,120,2156,22,418,72,76,238,525,58,695,159,40,182,87,7239,56,123,29,108,47,141,984,54,113,538,91,19,91,940,350,338,223,1179,5176,45,618,5,51,13,40477,1763,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",17339,20424,2714,1945,4513,,7142,5282,5340,5514,3800,1960,1666,3315,357,432,2782,19327,1337,1334,14908
2021-01-02 18:24,"https://web.archive.org/web/20210102232431/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-02,58,129,515,171,97,55,86,220,241,97,607,277,940,276,131,115,858,139,240,25,417,190,289,151,2908,159,295,277,170,201,391,219,320,69,123,46,340,187,1496,33,2341,15,16,441,75,140,685,68,124,2170,27,425,74,79,240,542,45,718,152,47,182,89,7294,59,124,29,107,47,143,1005,57,113,543,98,19,92,960,358,344,223,1181,5205,48,618,5,55,14,40994,1775,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",17575,20692,2727,1980,4563,,7230,5349,5399,5594,3851,1995,1698,3335,374,439,2808,19693,1350,1341,14989
2021-01-04 17:22,"https://web.archive.org/web/20210105022452/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-04,59,131,523,174,98,57,86,227,243,97,619,279,948,279,134,119,867,143,240,25,418,192,291,158,2935,168,294,281,170,202,392,222,330,69,122,49,352,187,1501,32,2370,15,16,443,75,145,703,68,124,2211,26,431,74,78,233,548,40,734,154,45,183,88,7431,59,122,31,108,48,147,1007,59,114,539,100,19,91,962,358,346,224,1190,5245,49,644,5,65,12,41492,1787,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",17812,20928,2752,1994,4617,,7327,5440,5457,5653,3890,2023,1719,3372,377,453,2856,19931,1361,1356,15158
2021-01-05 21:24,"https://web.archive.org/web/20210105222903/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-05,63,131,531,180,114,58,87,230,245,101,620,285,953,282,137,119,889,144,272,26,420,196,310,162,2957,175,297,288,188,211,407,234,357,71,125,56,348,189,1533,32,2405,15,16,467,78,151,719,68,124,2237,29,435,75,80,234,555,42,751,162,48,186,89,7543,59,123,31,108,50,145,1016,58,112,543,110,20,102,1001,360,348,228,1209,5284,52,647,5,70,19,42232,1803,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",18115,21325,2792,2038,4686,,7441,5541,5554,5759,3953,2059,1782,3419,385,465,2894,20298,1385,1365,15440
2021-01-06 17:07,"https://web.archive.org/web/20210106220713/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-06,64,132,536,186,115,58,86,234,245,101,626,283,966,285,139,119,918,144,284,26,425,198,323,170,2992,176,300,301,194,216,421,242,380,70,127,56,349,189,1541,32,2407,16,17,472,83,151,737,68,124,2276,30,436,75,82,236,548,43,773,164,48,182,90,7601,62,123,31,109,50,145,1031,60,117,546,113,20,108,1032,368,349,229,1244,5319,53,649,5,71,20,42762,1816,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",18325,21618,2819,2063,4746,,7541,5606,5630,5820,3990,2094,1828,3444,390,470,2922,20602,1398,1367,15613
2021-01-07 19:53,"https://web.archive.org/web/20210108005326/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-07,63,132,539,195,114,60,88,235,246,103,641,281,977,287,143,122,929,146,269,28,429,199,333,172,2988,177,300,309,195,213,432,243,323,65,127,59,351,186,1542,33,2428,16,17,480,83,154,748,68,128,2300,31,439,76,81,239,553,55,780,165,48,182,91,7639,62,123,31,111,51,147,1031,60,118,550,122,20,110,1035,375,345,231,1245,5352,57,653,5,66,21,42996,1829,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",18432,21757,2807,2087,4764,,7557,5650,5655,5840,4016,2114,1854,3459,397,478,2941,20768,1420,1354,15638
2021-01-08 21:10,"https://web.archive.org/web/20210109021004/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-08,63,133,541,195,115,60,88,236,246,105,647,282,998,289,143,129,932,147,308,28,429,201,329,171,2999,178,301,328,196,211,433,244,332,67,130,66,351,187,1545,32,2435,16,16,481,84,155,754,69,128,2317,31,439,76,81,235,556,56,779,170,47,182,90,7669,61,122,30,110,51,147,1032,60,118,582,124,20,111,1037,381,350,230,1254,5377,58,653,5,66,19,43279,1835,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",18564,21902,2813,2103,4817,,7609,5702,5697,5851,4038,2111,1873,3478,399,492,2957,20907,1430,1366,15728
2021-01-09 21:10,"https://web.archive.org/web/20210110025124/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-09,64,134,555,198,118,59,88,239,247,106,648,280,996,294,143,129,935,152,307,28,427,202,338,171,3030,180,300,333,206,215,437,250,339,69,129,69,355,187,1542,32,2445,16,16,486,87,153,757,69,128,2325,31,442,76,81,237,562,54,781,179,47,182,95,7674,62,122,30,112,51,147,1034,60,118,587,123,20,114,1041,386,353,230,1250,5390,58,652,5,53,19,43471,1851,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",18632,22003,2836,2119,4853,,7629,5727,5718,5875,4065,2116,1871,3498,403,493,2978,20985,1434,1375,15803
2021-01-11 17:18,"https://web.archive.org/web/20210111221856/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-11,65,137,570,202,123,59,88,244,248,107,658,283,1005,299,146,131,945,148,324,28,427,203,352,174,3111,181,302,341,219,225,439,248,380,70,128,68,364,187,1552,33,2476,16,16,490,89,155,766,69,128,2347,31,450,78,82,236,567,52,789,186,50,182,96,7757,63,122,30,116,51,148,1041,63,118,593,125,21,118,1041,393,353,231,1256,5479,57,653,5,53,12,44064,1900,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",18886,22293,2885,2141,4928,,7728,5817,5790,5961,4123,2144,1885,3547,405,502,3041,21227,1437,1386,16066
2021-01-12 18:36,"https://web.archive.org/web/20210112233639/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-12,65,138,572,201,125,59,88,250,249,107,661,285,1023,299,155,134,953,151,333,29,429,207,364,176,3138,184,302,348,222,228,439,310,397,73,129,67,370,203,1553,34,2501,16,16,499,89,172,771,69,128,2355,33,453,79,82,238,569,49,806,189,50,182,96,7797,66,123,30,116,51,149,1055,63,118,613,134,22,125,1054,394,353,231,1265,5507,56,655,5,51,13,44538,1909,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",19108,22483,2947,2179,4993,,7789,5873,5829,6037,4146,2158,1907,3627,407,507,3074,21464,1460,1391,16235
2021-01-13 20:34,"https://web.archive.org/web/20210114013424/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-13,66,138,575,205,125,60,88,249,252,107,670,287,1028,303,156,137,961,153,349,29,429,210,370,176,3159,187,303,359,228,229,446,312,417,72,129,62,375,203,1552,34,2518,16,16,506,92,175,780,69,129,2378,33,460,79,83,238,575,58,813,186,51,185,96,7910,66,125,30,117,51,148,1058,64,119,622,137,23,131,1065,395,354,231,1274,5545,56,657,5,51,12,44972,1911,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",19315,22707,2950,2195,5049,,7872,5928,5892,6097,4192,2185,1918,3644,410,517,3110,21710,1482,1404,16339
2021-01-14 21:48,"https://web.archive.org/web/20210115024801/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-14,67,138,598,210,126,61,90,258,256,107,677,288,1038,306,155,140,967,158,356,29,442,211,380,180,3185,190,304,360,232,230,456,312,424,72,129,62,376,202,1554,33,2616,16,16,508,96,183,791,69,130,2414,34,459,80,84,245,582,104,819,191,53,189,98,8017,66,125,31,120,51,148,1080,63,120,616,139,22,128,1075,398,355,233,1280,5574,58,658,5,57,14,45569,1926,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",19524,22976,3069,2213,5109,,7970,6027,5972,6170,4263,2229,1956,3660,413,527,3145,22017,1505,1404,16558
2021-01-15 16:31,"https://web.archive.org/web/20210115213120/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-15,66,140,608,210,126,63,90,258,259,107,678,284,1038,308,158,142,969,157,373,29,441,214,402,185,3240,192,304,366,236,230,454,313,451,72,129,62,371,217,1560,33,2623,17,16,510,104,183,791,69,130,2443,34,461,81,85,245,575,121,825,196,53,190,98,8079,66,125,30,121,51,148,1084,64,120,623,137,22,133,1075,402,356,235,1292,5629,61,655,5,59,15,45972,1945,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",19706,23185,3081,2234,5159,,8032,6080,6024,6221,4303,2253,1978,3688,416,537,3165,22195,1523,1413,16723
2021-01-16 22:14,"https://web.archive.org/web/20210117031430/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-16,66,141,614,210,125,64,90,257,259,107,682,287,1038,311,158,142,970,161,373,29,440,216,400,186,3267,192,304,370,236,231,454,318,454,72,128,62,377,222,1566,33,2630,20,16,513,106,186,792,70,131,2468,34,462,81,86,245,584,122,822,197,53,192,98,8151,66,125,30,122,51,149,1089,64,120,621,140,22,131,1078,408,356,235,1303,5674,62,655,5,62,12,46251,1965,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",19848,23324,3079,2246,5205,,8080,6119,6070,6257,4325,2263,1994,3692,420,541,3205,22375,1535,1425,16750
2021-01-18 17:08,"https://web.archive.org/web/20210118220843/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-18,67,142,618,213,126,66,90,268,260,109,684,286,1037,312,158,142,973,165,387,29,446,216,411,187,3312,195,303,374,254,231,453,366,479,72,129,63,389,225,1564,34,2632,20,16,512,106,183,813,70,136,2511,38,464,81,86,245,569,122,843,196,53,194,105,8199,68,127,30,125,52,151,1094,66,121,624,144,22,138,1082,417,359,234,1311,5758,65,657,5,60,12,46751,1998,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",20046,23558,3147,2272,5256,,8170,6180,6129,6328,4367,2271,2005,3773,422,552,3243,22592,1540,1449,16953
2021-01-19 16:58,"https://web.archive.org/web/20210119205822/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-19,67,144,621,212,135,66,90,267,260,110,695,288,1046,316,161,144,984,165,401,31,450,217,425,192,3329,195,306,378,264,232,460,370,507,73,130,63,392,234,1571,34,2682,20,16,514,108,199,821,71,137,2562,41,467,82,90,246,577,122,847,196,53,196,107,8297,70,130,30,125,53,150,1107,66,122,628,143,23,139,1085,425,359,238,1324,5838,67,660,5,57,13,47333,2026,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",20290,23891,3152,2295,5314,,8289,6295,6205,6409,4429,2291,2031,3775,426,566,3308,22923,1543,1459,17108
2021-01-20 17:35,"https://web.archive.org/web/20210120223547/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-20,68,146,655,208,135,66,90,272,263,112,695,289,1064,320,163,144,988,166,410,30,449,219,422,191,3353,201,308,378,258,232,462,397,525,72,131,62,396,242,1579,33,2680,23,16,516,113,203,818,71,139,2610,40,466,83,89,247,551,125,865,197,53,197,105,8348,68,132,30,125,53,149,1113,66,124,636,143,23,146,1103,430,361,240,1342,5890,68,658,5,56,13,47723,2042,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",20461,24082,3180,2334,5378,,8355,6335,6258,6445,4453,2307,2052,3806,427,577,3337,23191,1559,1473,17159
2021-01-21 16:12,"https://web.archive.org/web/20210121211215/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-21,68,147,655,209,136,67,90,277,265,113,696,289,1067,321,163,145,995,167,412,30,456,222,426,191,3376,202,309,380,258,236,467,417,528,73,131,61,401,242,1580,33,2687,23,16,517,113,202,833,71,140,2641,42,468,88,90,253,551,126,865,199,53,197,106,8402,68,133,32,125,53,149,1118,66,125,646,147,23,147,1111,427,352,243,1349,5961,68,667,5,59,13,48071,2082,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",20625,24280,3186,2361,5418,,8404,6397,6306,6480,4476,2326,2060,3843,433,583,3386,23404,1572,1488,17205
2021-01-22 16:42,"https://web.archive.org/web/20210122214205/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-22,68,147,658,208,137,67,90,282,266,114,699,290,1079,323,163,145,995,169,443,30,458,225,437,193,3391,205,311,381,269,240,469,423,550,72,131,61,408,238,1585,34,2706,24,16,517,116,198,832,72,141,2674,38,471,87,90,254,554,129,872,197,53,197,113,8444,68,132,32,127,52,149,1114,69,126,653,150,23,157,1117,432,360,244,1359,6017,73,671,5,59,14,48452,2098,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",20781,24474,3197,2391,5466,,8488,6449,6348,6541,4507,2342,2063,3857,433,594,3417,23607,1586,1498,17317
2021-01-24 11:11,"https://web.archive.org/web/20210124161116/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-23,68,149,664,210,138,69,90,281,265,114,699,290,1080,322,166,145,998,170,443,30,458,226,446,192,3412,209,316,386,268,244,470,439,558,73,131,62,408,240,1592,36,2712,23,16,517,116,196,839,72,140,2687,44,472,87,90,254,555,129,880,205,53,207,113,8461,68,132,30,127,52,149,1121,69,127,650,153,23,157,1124,432,364,244,1360,6041,73,676,5,61,14,48677,2101,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",20874,24603,3200,2407,5506,,8511,6480,6390,6563,4527,2348,2078,3867,433,599,3429,23770,1594,1503,17344
2021-01-25 16:54,"https://web.archive.org/web/20210125215401/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-25,68,150,668,210,140,72,90,287,266,115,705,293,1078,327,169,145,998,177,445,29,452,227,463,196,3434,216,317,386,272,244,468,440,571,74,131,62,409,243,1592,36,2721,23,16,519,113,199,844,73,140,2723,38,474,85,94,253,560,129,890,204,54,207,112,8510,68,132,32,128,52,148,1126,68,127,651,155,23,161,1124,437,366,244,1374,6108,73,689,5,62,14,49013,2126,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",21032,24756,3225,2428,5543,,8533,6543,6428,6614,4568,2363,2088,3905,439,606,3469,23977,1612,1513,17397
2021-01-26 17:39,"https://web.archive.org/web/20210126223059/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-26,68,149,670,218,142,72,91,288,267,115,716,295,1089,338,174,147,1004,182,458,29,454,230,477,193,3446,217,317,391,302,244,475,440,601,74,132,62,410,243,1592,36,2732,25,16,523,115,212,855,74,143,2806,40,482,85,94,254,566,129,904,209,54,207,112,8581,69,134,33,128,53,148,1133,72,127,661,161,23,160,1140,443,373,247,1387,6199,78,693,5,65,14,49612,2151,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",21286,25092,3234,2459,5630,,8635,6652,6510,6696,4610,2385,2107,3928,441,612,3523,24315,1620,1520,17581
2021-01-27 14:53,"https://web.archive.org/web/20210127195232/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-27,68,150,683,219,145,72,91,291,268,116,715,296,1104,339,175,148,1005,184,465,29,454,232,486,200,3458,219,317,392,283,246,483,438,601,77,135,62,409,244,1676,36,2737,26,16,525,115,212,865,73,143,2840,41,483,84,94,254,563,129,919,208,54,197,113,8657,71,137,35,128,54,148,1139,74,127,672,162,23,167,1142,441,376,247,1382,6236,78,715,5,63,15,49996,2162,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",21454,25270,3272,2485,5677,,8683,6680,6558,6740,4636,2395,2125,4017,448,616,3543,24505,1635,1525,17724
2021-01-28 16:45,"https://web.archive.org/web/20210128214542/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-28,73,152,687,219,146,72,91,294,272,119,730,300,1104,339,179,148,1006,188,475,30,457,234,490,202,3478,219,320,395,286,251,481,442,608,75,146,61,410,275,1678,36,2737,25,16,526,117,214,867,73,143,2881,40,483,84,94,255,563,130,932,212,54,197,113,8696,71,158,35,130,66,149,1143,74,127,670,165,23,168,1147,444,375,247,1397,6289,78,717,5,66,15,50379,2179,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",21603,25478,3298,2500,5729,,8735,6736,6622,6773,4676,2399,2149,4060,449,621,3575,24717,1651,1531,17835
2021-01-29 16:04,"https://web.archive.org/web/20210129220432/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-29,73,152,688,218,145,72,91,298,282,120,738,299,1114,339,183,150,1008,189,482,31,459,237,496,203,3484,221,320,390,290,251,484,447,622,75,146,61,412,280,1682,36,2750,25,16,526,117,218,875,73,144,2937,40,483,85,94,256,563,130,937,210,54,198,113,8782,71,158,42,128,66,149,1150,73,130,676,164,23,169,1157,445,373,249,1407,6340,78,717,5,65,15,50744,2191,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",21778,25664,3302,2530,5769,,8814,6795,6676,6811,4710,2409,2158,4072,451,634,3617,24959,1665,1542,17876
2021-01-31 17:22,"https://web.archive.org/web/20210131222213/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-01-30,73,152,689,220,145,72,94,300,284,121,738,300,1112,338,183,148,1009,190,489,31,459,236,496,204,3480,221,321,391,292,253,483,446,628,75,146,61,416,273,1681,37,2751,25,16,526,117,218,877,74,144,2954,40,483,85,94,255,560,134,937,209,54,198,113,8826,71,158,40,129,66,149,1157,73,129,676,166,25,172,1158,448,373,250,1418,6383,78,717,5,64,15,50897,2206,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",21841,25743,3313,2540,5796,,8858,6814,6705,6831,4715,2418,2152,4068,453,636,3641,25051,1667,1554,17895
2021-02-01 20:24,"https://web.archive.org/web/20210202012459/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-01,74,152,698,220,145,73,93,302,285,121,749,310,1129,342,185,148,1010,196,507,31,457,236,502,205,3496,222,325,392,300,261,483,448,646,75,146,62,416,274,1689,37,2760,26,17,530,117,225,884,74,144,3003,42,484,86,94,256,564,134,956,210,54,199,113,8948,72,159,43,128,66,150,1163,73,130,683,169,25,178,1167,458,373,252,1417,6451,80,719,5,64,16,51403,2222,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",22061,26026,3316,2570,5846,,8954,6914,6756,6914,4764,2434,2159,4092,456,650,3678,25332,1676,1563,18048
2021-02-02 16:30,"https://web.archive.org/web/20210202203039/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-02,74,153,705,221,144,72,92,306,285,120,752,310,1130,344,192,150,1008,196,507,31,458,236,505,206,3523,223,326,396,301,267,484,455,663,75,146,62,416,280,1686,38,2771,26,17,530,116,230,879,74,146,3029,42,489,87,95,256,567,134,966,211,53,199,112,9008,72,159,45,129,66,152,1167,73,130,684,170,24,177,1179,460,327,252,1414,6490,80,720,5,65,18,51633,2226,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",22155,26153,3325,2593,5906,,8984,6935,6784,6931,4788,2445,2165,4102,456,655,3678,25503,1694,1567,18080
2021-02-03 17:49,"https://web.archive.org/web/20210203224906/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-03,74,153,704,222,144,75,94,314,292,120,756,310,1140,346,196,150,1007,198,519,31,458,237,503,206,3541,225,328,402,301,266,483,458,684,76,146,62,419,286,1689,39,2792,26,19,531,116,234,903,74,146,3065,42,489,88,95,257,569,135,971,211,53,200,120,9051,76,160,46,129,72,154,1170,73,130,683,169,26,182,1184,463,328,254,1417,6518,81,724,5,66,16,51967,2226,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",22293,26334,3340,2610,5955,,9059,6990,6826,6967,4818,2459,2187,4096,456,661,3698,25732,1708,1575,18137
2021-02-04 16:43,"https://web.archive.org/web/20210204214358/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-04,75,155,717,223,145,75,94,314,294,120,758,313,1147,358,195,150,1006,198,520,31,458,236,505,209,3578,226,327,404,302,264,485,465,701,76,147,62,419,285,1692,39,2794,26,19,549,116,239,913,75,147,3145,41,489,89,95,256,571,135,984,211,53,200,123,9194,76,161,45,129,73,154,1173,74,130,695,169,28,186,1193,462,329,255,1448,6589,81,724,5,66,17,52494,2245,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",22583,26563,3348,2642,6040,,9179,7084,6899,7035,4857,2473,2189,4096,460,674,3759,26066,1716,1592,18227
2021-02-05 16:26,"https://web.archive.org/web/20210205212644/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-05,75,155,719,222,147,75,98,309,294,122,767,315,1151,362,200,150,1007,200,529,31,459,236,506,209,3593,226,329,406,302,264,488,466,712,75,147,62,421,287,1694,38,2811,26,18,568,116,242,916,75,149,3180,42,489,89,95,256,570,135,993,213,53,201,127,9322,77,160,51,131,73,156,1178,74,130,686,170,28,187,1197,467,333,258,1453,6625,82,731,5,66,17,52869,2254,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",22725,26757,3387,2665,6091,,9249,7146,6950,7079,4885,2485,2201,4118,460,682,3780,26275,1726,1599,18347
2021-02-07 15:38,"https://web.archive.org/web/20210207204859/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-06,75,155,715,222,148,76,98,309,294,121,769,318,1149,364,200,151,1007,202,534,31,459,236,510,217,3600,228,329,404,301,267,491,467,711,75,147,62,424,286,1693,38,2824,26,18,569,116,239,920,77,149,3202,42,490,89,95,256,570,135,1004,214,53,201,128,9368,77,160,51,132,73,156,1179,75,130,685,169,28,188,1202,466,333,259,1456,6652,82,728,5,66,17,53037,2258,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",22798,26833,3406,2677,6117,,9269,7166,6981,7110,4895,2485,2201,4136,461,680,3793,26377,1734,1606,18386
2021-02-08 16:53,"https://web.archive.org/web/20210208215317/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-08,75,155,717,223,151,77,98,314,295,122,774,317,1149,366,200,151,1007,203,541,32,459,236,511,221,3616,227,330,404,301,267,494,468,733,76,147,62,424,285,1694,38,2836,26,18,575,116,245,918,77,150,3260,43,491,90,95,256,572,135,1010,217,53,203,135,9451,77,160,49,133,73,156,1190,75,130,692,170,28,190,1206,471,333,259,1453,6708,83,740,5,66,17,53396,2266,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",22942,27046,3408,2695,6162,,9352,7222,7040,7156,4924,2492,2214,4139,460,690,3824,26644,1742,1614,18412
2021-02-09 21:19,"https://web.archive.org/web/20210210021904/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-09,74,156,715,222,151,77,98,317,294,121,777,316,1162,372,201,151,1010,204,550,33,461,236,516,227,3622,227,330,405,302,269,500,470,737,76,149,62,426,290,1695,38,2847,26,19,596,116,246,917,80,150,3305,47,492,91,96,256,577,137,1033,222,53,204,135,9534,78,160,49,135,73,156,1193,75,131,691,173,28,189,1215,471,333,259,1468,6734,85,748,5,66,18,53751,2270,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",23121,27186,3444,2720,6232,,9421,7274,7095,7194,4954,2502,2218,4141,461,701,3868,26820,1754,1621,18526
2021-02-10 15:55,"https://web.archive.org/web/20210210205522/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-10,74,156,718,225,155,78,98,316,295,121,778,316,1170,367,201,151,1011,205,557,33,461,236,522,228,3641,227,329,409,301,274,498,470,756,76,149,62,426,296,1696,39,2858,26,19,606,117,254,926,80,150,3346,47,491,91,97,256,578,136,1036,223,53,206,140,9610,79,160,51,136,73,156,1204,75,132,692,174,28,189,1223,474,335,261,1473,6762,87,754,5,68,17,54075,2288,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",23247,27346,3482,2741,6287,,9491,7316,7134,7238,4977,2509,2237,4145,462,710,3897,27009,1772,1633,18592
2021-02-11 16:38,"https://web.archive.org/web/20210211213835/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-11,74,156,721,226,155,78,98,316,295,121,778,316,1195,368,203,151,1012,205,560,32,462,236,521,233,3652,226,335,411,301,275,500,472,759,76,148,62,427,298,1696,40,2858,26,19,608,117,255,930,82,150,3381,46,493,91,96,257,576,136,1042,226,55,207,141,9662,79,160,51,136,73,156,1203,76,131,695,173,28,191,1228,477,337,261,1477,6792,86,755,5,67,17,54298,2303,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",23334,27458,3506,2756,6321,,9544,7349,7156,7265,4996,2519,2239,4153,465,711,3925,27117,1781,1639,18660
2021-02-12 15:57,"https://web.archive.org/web/20210212205747/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-12,74,156,731,228,157,78,98,318,296,121,784,317,1200,369,203,151,1011,208,565,32,461,236,531,232,3670,226,335,412,301,278,503,475,783,76,149,62,427,298,1702,40,2860,26,19,615,117,268,939,82,151,3414,48,491,92,97,257,578,135,1049,231,55,207,141,9740,79,160,51,136,73,156,1206,77,130,700,174,28,195,1232,477,339,264,1487,6840,86,754,5,68,17,54640,2327,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",23497,27633,3510,2771,6388,,9627,7407,7195,7308,5017,2527,2242,4158,464,717,3966,27290,1787,1652,18764
2021-02-15 11:31,"https://web.archive.org/web/20210215153111/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-13,74,155,731,228,157,78,97,315,296,122,784,315,1199,369,203,154,1011,208,568,32,461,236,534,234,3687,225,336,416,303,275,504,476,789,76,149,62,430,295,1704,40,2860,26,19,620,116,272,940,82,151,3429,48,491,92,97,257,575,136,1059,232,55,207,144,9734,78,160,51,138,73,156,1211,76,131,703,174,28,196,1233,479,340,263,1492,6836,90,766,5,66,17,54732,2324,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",23539,27680,3513,2771,6409,,9648,7416,7211,7315,5026,2531,2243,4162,465,720,3971,27366,1796,1651,18763
2021-02-15 16:49,"https://web.archive.org/web/20210215214921/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-15,74,155,732,232,162,78,97,317,297,125,786,315,1203,371,203,154,1010,209,570,32,461,236,533,234,3694,226,335,416,302,275,505,479,789,76,148,62,434,304,1701,40,2866,26,19,621,116,272,942,82,151,3445,49,491,92,97,257,575,135,1062,233,55,210,144,9784,78,160,51,138,73,164,1212,77,130,703,174,28,195,1241,479,340,265,1497,6872,90,766,5,68,17,54919,2335,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",23633,27775,3511,2787,6439,,9678,7454,7227,7339,5044,2541,2249,4161,465,724,3989,27493,1807,1655,18786
2021-02-17 10:23,"https://web.archive.org/web/20210217152352/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-16,74,155,738,232,162,78,98,320,296,125,792,315,1207,373,203,157,1010,209,575,33,465,236,535,236,3709,226,336,416,302,275,504,479,790,76,148,62,436,306,1704,40,2875,26,19,625,116,271,949,82,151,3490,49,491,92,98,260,575,136,1073,237,55,210,144,9849,78,160,52,138,73,166,1218,77,130,702,175,28,198,1250,480,344,267,1502,6932,90,811,5,69,17,55268,2353,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",23829,27923,3516,2793,6468,,9743,7528,7287,7395,5079,2553,2249,4173,466,730,4054,27691,1807,1664,18856
2021-02-17 16:01,"https://web.archive.org/web/20210217210116/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-17,75,155,744,231,165,78,98,323,299,126,793,319,1213,376,205,162,1010,208,582,33,469,236,551,238,3715,227,336,420,303,283,508,482,827,76,151,62,437,310,1718,40,2881,27,19,630,117,284,953,82,151,3494,42,492,92,99,260,575,136,1090,238,55,210,146,9899,80,166,52,138,74,167,1231,77,130,708,179,28,202,1254,490,344,266,1505,6956,92,786,5,66,17,55569,2352,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",23941,28090,3538,2808,6523,,9787,7572,7332,7438,5098,2568,2248,4195,467,733,4053,27851,1816,1680,18969
2021-02-18 16:50,"https://web.archive.org/web/20210218215021/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-18,75,155,744,231,168,79,98,324,299,127,794,318,1227,378,205,165,1011,209,585,34,469,237,553,239,3741,229,338,420,300,283,513,484,829,77,151,62,439,309,1721,40,2890,27,19,634,118,289,958,82,151,3543,42,492,92,99,261,575,137,1096,238,55,209,147,9967,80,167,52,138,74,169,1241,76,130,713,182,28,202,1256,484,344,266,1518,7009,95,787,5,66,19,55882,2364,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",24097,28214,3571,2825,6603,,9850,7624,7374,7462,5129,2571,2251,4193,470,733,4081,28025,1823,1690,19060
2021-02-19 15:23,"https://web.archive.org/web/20210219202311/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-19,75,156,736,231,168,79,98,326,304,129,796,318,1234,379,207,165,1015,209,588,34,470,236,557,245,3757,230,338,423,300,286,517,485,834,77,151,62,441,313,1724,40,2911,28,19,635,119,297,963,83,151,3559,44,493,93,100,262,578,138,1114,245,55,210,150,10022,83,167,52,138,74,169,1246,76,131,715,183,28,202,1268,485,347,267,1519,7039,94,785,5,68,19,56162,2377,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",24239,28340,3583,2833,6663,,9886,7675,7419,7511,5147,2575,2257,4196,472,737,4106,28199,1834,1698,19116
2021-02-20 20:13,"https://web.archive.org/web/20210221011334/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-20,75,156,736,233,169,79,98,334,305,130,796,318,1241,379,207,164,1015,209,591,34,470,236,558,244,3762,231,338,423,300,285,517,489,836,78,151,62,442,311,1720,40,2915,29,19,639,123,299,966,83,151,3566,44,493,94,100,261,579,141,1118,247,55,210,149,10063,83,167,52,138,74,173,1245,76,132,714,186,28,202,1286,487,349,267,1528,7085,94,784,5,70,19,56350,2390,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",24327,28442,3581,2854,6704,,9927,7704,7433,7533,5160,2578,2261,4196,472,742,4133,28312,1845,1701,19145
2021-02-22 16:39,"https://web.archive.org/web/20210222213949/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-22,75,156,740,232,172,82,98,334,308,130,799,318,1245,380,207,166,1015,209,595,34,470,237,564,245,3766,231,338,426,302,284,518,488,835,78,151,61,447,316,1718,40,2925,28,19,644,126,300,973,83,151,3601,44,493,94,100,261,579,140,1120,247,55,211,150,10104,82,167,52,137,74,174,1249,76,136,713,187,28,206,1290,493,349,267,1525,7085,99,784,5,70,19,56525,2385,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",24429,28511,3585,2871,6723,,9956,7731,7464,7557,5173,2583,2260,4207,474,745,4149,28421,1852,1708,19176
2021-02-23 16:25,"https://web.archive.org/web/20210223212524/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-23,75,157,741,232,171,81,98,337,308,129,799,318,1253,390,208,169,1027,209,603,34,470,237,575,249,3819,231,340,433,305,285,520,492,858,79,151,61,449,315,1745,41,2941,29,19,660,126,318,987,84,151,3646,46,498,94,100,262,581,142,1141,249,55,211,152,10177,82,167,52,137,74,175,1258,76,137,715,190,28,209,1294,494,349,267,1535,7114,99,786,5,69,18,56993,2393,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",24669,28719,3605,2894,6818,,10037,7816,7530,7609,5199,2597,2269,4224,479,757,4186,28706,1859,1718,19288
2021-02-24 18:11,"https://web.archive.org/web/20210224231135/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-24,75,157,744,234,172,81,98,336,310,130,804,320,1266,392,209,173,1031,209,606,34,471,239,590,257,3839,231,339,433,303,287,526,500,860,79,151,61,449,325,1751,41,2950,29,19,669,125,318,984,85,151,3697,43,499,94,101,263,581,141,1145,249,55,211,153,10231,82,167,52,138,75,175,1263,75,138,728,189,28,210,1295,494,352,269,1545,7146,100,788,5,68,18,57306,2399,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",24815,28857,3634,2905,6876,,10102,7849,7576,7660,5218,2602,2273,4245,482,755,4216,28891,1864,1726,19372
2021-02-25 16:13,"https://web.archive.org/web/20210225211339/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-25,75,157,744,235,176,82,99,336,311,131,802,321,1266,392,211,178,1030,209,608,34,475,239,594,258,3853,232,340,435,302,288,521,506,867,80,151,61,450,325,1754,41,2955,29,19,671,125,315,994,85,151,3744,43,496,94,101,263,584,141,1163,253,55,210,152,10249,83,167,52,138,77,176,1267,76,139,726,192,28,211,1305,498,354,269,1552,7165,99,789,5,69,18,57516,2408,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",24923,28946,3647,2919,6915,,10156,7870,7597,7684,5231,2604,2279,4261,486,754,4235,29030,1871,1731,19409
2021-02-26 18:30,"https://web.archive.org/web/20210226233019/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-26,75,157,748,239,178,82,99,339,312,133,805,321,1283,392,211,190,1030,209,608,34,476,239,598,266,3874,232,340,440,303,289,522,507,864,80,151,61,450,332,1766,41,2953,29,19,671,128,312,998,85,151,3773,43,495,94,101,263,582,140,1160,254,55,211,151,10261,83,167,52,138,77,177,1270,77,139,724,195,28,213,1313,502,355,270,1560,7176,99,789,5,68,18,57700,2407,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",24981,29057,3662,2933,6942,,10193,7887,7624,7711,5252,2606,2280,4272,485,756,4255,29151,1882,1726,19445
2021-03-01 08:48,"https://web.archive.org/web/20210301134847/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-02-27,75,157,749,239,181,82,99,341,314,133,804,322,1284,396,211,192,1031,209,608,34,476,240,603,268,3870,232,340,444,306,290,521,509,870,80,151,61,452,334,1772,41,2956,28,19,673,129,314,1008,86,151,3821,43,496,94,101,263,584,140,1180,256,55,211,151,10293,83,167,52,138,77,177,1270,77,138,724,195,28,213,1321,501,356,272,1573,7253,100,789,5,69,18,57969,2418,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",25110,29198,3661,2941,6988,,10242,7939,7671,7753,5270,2618,2279,4268,484,759,4276,29344,1894,1739,19473
2021-03-01 16:19,"https://web.archive.org/web/20210301211923/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-01,75,157,750,239,181,83,99,344,314,134,804,322,1286,401,212,192,1031,211,615,34,476,240,622,271,3886,233,340,444,314,295,523,511,882,80,151,61,454,337,1772,42,2958,28,19,674,130,318,1018,89,151,3848,43,497,94,103,263,587,142,1188,261,54,211,151,10363,83,167,52,139,76,176,1273,77,140,728,196,28,217,1322,504,358,275,1576,7282,100,796,5,69,18,58265,2425,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",25256,29340,3669,2961,7048,,10286,7989,7704,7794,5289,2625,2277,4292,486,765,4298,29568,1898,1755,19495
2021-03-02 15:27,"https://web.archive.org/web/20210302202755/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-02,75,157,753,239,190,83,99,345,315,134,820,322,1304,411,212,196,1038,213,616,35,476,240,626,276,3933,233,342,446,314,294,528,523,895,80,151,61,456,356,1784,44,2973,29,19,683,132,327,1024,90,151,3927,44,500,94,104,263,588,147,1226,268,54,211,155,10412,83,168,52,139,76,176,1280,79,140,732,206,28,220,1336,510,360,278,1581,7362,101,806,5,66,20,58840,2430,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",25535,29607,3698,2995,7175,,10384,8065,7791,7867,5339,2634,2284,4306,490,774,4333,29851,1917,1764,19711
2021-03-03 15:28,"https://web.archive.org/web/20210303202825/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-03,76,157,755,239,190,83,100,344,309,134,819,322,1300,414,217,195,1039,213,616,35,478,240,625,278,3965,232,343,449,315,293,527,529,893,81,151,61,455,359,1785,44,2973,29,19,689,134,324,1039,93,152,3958,44,503,94,103,263,590,147,1224,272,56,211,156,10426,83,168,52,139,76,178,1288,79,140,734,207,28,218,1330,511,361,277,1586,7417,103,786,5,66,18,59009,2437,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",25617,29693,3699,3010,7231,,10413,8071,7812,7881,5349,2637,2286,4319,492,774,4340,30019,1924,1764,19696
2021-03-04 16:53,"https://web.archive.org/web/20210304215345/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-04,76,157,754,240,195,83,100,344,308,135,822,323,1304,418,218,197,1040,214,619,35,480,240,638,280,3991,234,345,451,315,294,533,532,897,80,151,62,458,362,1787,44,2981,29,19,693,135,325,1047,94,153,4009,44,503,94,103,263,592,147,1223,273,57,211,156,10461,83,168,52,139,76,189,1288,81,140,736,206,28,220,1335,518,366,279,1591,7468,103,786,5,68,17,59310,2445,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",25787,29806,3717,3021,7309,,10462,8122,7847,7908,5371,2639,2290,4341,493,773,4381,30223,1930,1768,19742
2021-03-05 15:51,"https://web.archive.org/web/20210305205133/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-05,76,157,755,241,196,83,99,346,309,135,828,322,1314,426,219,202,1041,215,630,35,483,240,640,281,4037,234,345,458,316,296,538,531,909,80,151,62,461,366,1798,44,2988,29,19,702,137,334,1049,98,153,4041,44,506,93,104,263,589,148,1240,282,57,211,157,10456,83,168,54,139,76,192,1289,81,140,733,211,28,222,1345,522,373,278,1588,7513,104,786,5,69,17,59615,2453,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",25943,29931,3741,3051,7391,,10508,8163,7900,7930,5381,2643,2292,4356,501,774,4405,30361,1937,1774,19863
2021-03-07 10:54,"https://web.archive.org/web/20210307155459/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-06,77,157,757,241,196,83,99,347,309,136,828,324,1314,429,219,203,1041,215,630,35,484,240,648,281,4061,234,346,459,319,297,537,540,925,80,151,62,464,368,1806,44,2998,29,19,713,137,334,1062,98,154,4125,44,506,93,105,263,594,149,1242,283,57,211,158,10539,83,168,54,139,76,199,1297,80,140,733,213,28,227,1350,525,383,279,1593,7571,105,785,5,69,17,60018,2474,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",26147,30107,3764,3077,7461,,10585,8223,7968,7993,5404,2658,2294,4355,503,786,4446,30635,1942,1780,19926
2021-03-08 18:54,"https://web.archive.org/web/20210308235453/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-08,77,157,761,243,199,83,99,348,312,137,838,326,1335,430,222,207,1041,215,637,35,483,240,650,284,4083,234,346,457,324,296,537,552,937,80,151,62,466,371,1815,44,3007,29,20,717,138,334,1063,99,154,4169,46,506,93,105,263,600,148,1257,288,56,211,158,10573,83,168,54,139,77,201,1292,81,140,742,217,28,226,1352,528,384,278,1594,7614,104,800,5,69,17,60341,2481,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",26302,30278,3761,3089,7529,,10644,8282,8000,8037,5418,2661,2297,4384,504,789,4486,30837,1948,1802,19975
2021-03-09 16:49,"https://web.archive.org/web/20210309214958/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-09,77,157,761,243,199,83,99,352,314,137,851,325,1352,439,221,208,1044,216,640,35,486,240,647,284,4118,234,346,458,325,298,535,568,954,80,152,61,469,382,1850,46,3013,29,20,728,140,331,1075,101,155,4271,47,511,93,105,264,604,149,1305,291,56,210,158,10669,83,168,57,140,77,208,1299,81,140,745,222,31,228,1358,536,390,281,1606,7673,104,792,5,70,17,60922,2496,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",26564,30562,3796,3117,7667,,10724,8358,8082,8118,5460,2673,2301,4422,511,803,4516,31142,1954,1809,20187
2021-03-10 16:57,"https://web.archive.org/web/20210310215727/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-10,77,157,768,243,199,83,99,352,317,136,850,326,1354,436,220,209,1045,218,649,35,486,240,650,284,4173,234,346,468,326,298,530,578,967,80,152,61,472,374,1859,46,3036,29,20,738,141,333,1077,103,155,4308,45,514,93,105,264,604,150,1309,290,56,210,160,10711,84,168,56,141,77,221,1305,81,142,747,222,32,231,1367,541,394,282,1611,7751,103,792,5,70,17,61288,2534,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",26735,30733,3820,3146,7755,,10781,8404,8137,8174,5478,2679,2298,4436,511,809,4562,31334,1965,1819,20288
2021-03-11 16:46,"https://web.archive.org/web/20210311214650/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-11,77,157,771,243,199,83,102,353,317,136,861,327,1378,441,220,213,1045,217,673,35,491,241,671,284,4200,235,346,471,328,299,529,593,992,81,152,61,473,384,1875,49,3054,29,20,745,142,337,1095,103,156,4323,45,516,93,105,265,606,149,1322,289,56,211,161,10761,84,168,56,142,77,225,1316,81,145,753,227,32,238,1391,553,396,282,1631,7791,107,793,5,70,17,61766,2531,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",26965,30941,3860,3161,7906,,10846,8472,8199,8227,5511,2687,2303,4454,511,815,4584,31592,1976,1819,20469
2021-03-12 21:23,"https://web.archive.org/web/20210313022345/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-12,77,157,774,244,202,83,103,354,317,140,864,327,1380,448,221,214,1045,217,681,35,489,246,675,285,4249,235,346,477,332,299,533,601,984,81,152,60,471,385,1876,49,3057,30,20,755,142,335,1112,103,156,4438,45,521,93,106,265,605,149,1321,289,58,211,161,10874,86,168,56,143,77,225,1320,81,151,755,227,33,240,1422,553,403,283,1639,7876,107,814,5,72,17,62307,2549,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",27220,31201,3886,3185,8007,,10936,8570,8303,8282,5537,2704,2305,4478,513,824,4629,31998,1989,1834,20520
2021-03-13 20:49,"https://web.archive.org/web/20210314014940/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-13,77,157,779,244,205,83,103,358,318,143,870,326,1385,454,222,216,1049,217,685,36,491,246,687,285,4286,235,347,477,333,298,532,605,983,82,152,60,471,390,1884,49,3067,30,20,754,141,337,1112,105,156,4481,45,525,93,105,266,607,149,1337,291,58,211,163,10932,86,168,56,143,77,228,1325,81,158,756,231,34,241,1453,555,405,283,1644,7921,108,799,5,72,17,62651,2558,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",27386,31363,3902,3216,8076,,11014,8617,8345,8320,5552,2707,2310,4494,513,833,4643,32191,1996,1841,20634
2021-03-15 16:58,"https://web.archive.org/web/20210315205804/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-15,78,157,784,244,208,83,103,365,319,143,877,329,1393,457,221,216,1052,219,729,35,490,246,702,285,4321,236,347,479,341,298,532,615,1028,81,153,60,478,401,1896,49,3079,30,20,758,140,340,1129,105,156,4586,46,527,92,105,267,608,152,1346,294,58,212,168,11049,87,169,56,143,77,233,1329,81,162,758,234,34,247,1477,557,415,292,1654,8006,108,805,5,73,17,63336,2568,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",27665,31701,3970,3247,8189,,11161,8720,8449,8424,5593,2719,2315,4519,513,841,4684,32581,2002,1862,20853
2021-03-16 15:12,"https://web.archive.org/web/20210316191245/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-16,80,157,789,245,209,83,103,366,324,144,878,332,1389,463,226,223,1054,218,741,36,492,246,710,286,4381,238,347,486,341,304,532,623,1042,81,156,60,479,405,1901,49,3082,30,20,762,141,340,1145,107,156,4669,46,533,92,105,272,609,157,1354,295,58,214,166,11154,87,172,56,144,80,239,1332,81,161,767,236,36,251,1490,564,419,294,1665,8059,110,800,5,75,17,63866,2580,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",27911,31926,4029,3297,8305,,11227,8791,8508,8491,5638,2733,2324,4552,518,854,4717,32885,2018,1870,21004
2021-03-17 16:43,"https://web.archive.org/web/20210317204319/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-17,80,158,792,248,212,83,103,364,333,144,897,336,1412,464,231,228,1056,218,751,38,494,246,715,288,4425,238,347,493,340,314,536,636,1061,81,156,60,479,407,1910,49,3092,30,22,772,141,351,1158,107,156,4728,46,534,94,105,272,610,156,1377,293,59,215,200,11247,87,172,56,145,80,243,1342,81,167,770,246,36,253,1537,565,425,297,1666,8110,118,804,5,77,17,64487,2585,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",28224,32224,4039,3318,8417,,11348,8897,8601,8592,5677,2745,2333,4559,525,859,4752,33239,2033,1872,21207
2021-03-18 15:40,"https://web.archive.org/web/20210318194033/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-18,80,158,794,245,215,83,103,368,339,145,897,343,1412,467,231,226,1062,219,770,38,497,247,724,289,4483,239,351,500,342,320,546,642,1083,81,156,60,480,416,1913,49,3107,30,22,779,141,347,1176,107,156,4800,46,544,94,105,272,610,156,1383,299,59,216,210,11303,88,173,56,146,80,250,1354,81,171,774,247,36,256,1547,562,423,296,1671,8155,133,804,5,77,17,64977,2594,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",28463,32442,4072,3344,8548,,11420,8960,8663,8640,5716,2753,2344,4589,525,863,4803,33550,2043,1887,21306
2021-03-19 16:43,"https://web.archive.org/web/20210319204324/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-19,80,158,801,249,221,83,103,368,345,145,923,333,1426,474,232,232,1065,221,794,38,497,248,740,289,4542,242,353,509,345,320,545,647,1117,81,156,60,481,431,1939,49,3113,31,22,790,143,348,1186,108,158,4882,47,550,94,104,271,613,162,1388,300,59,218,217,11400,89,173,56,151,80,259,1360,82,169,777,250,36,263,1588,562,430,301,1681,8226,139,807,5,77,17,65664,2608,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",28798,32768,4098,3390,8721,,11551,9066,8765,8714,5747,2761,2346,4603,530,868,4848,33967,2057,1907,21487
2021-03-21 22:24,"https://web.archive.org/web/20210322022451/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-20,80,159,804,249,219,83,103,373,349,145,932,333,1428,473,233,234,1069,222,800,38,497,247,744,289,4611,244,353,513,349,318,546,660,1121,81,156,60,488,446,1955,49,3125,30,22,796,144,352,1196,108,163,4996,47,558,94,104,271,614,165,1394,300,59,221,229,11499,88,173,57,151,81,262,1366,87,173,778,257,36,267,1624,561,433,301,1695,8283,139,807,5,78,17,66259,2620,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",29080,33024,4155,3420,8843,,11672,9160,8859,8795,5781,2771,2353,4605,534,877,4878,34294,2066,1921,21689
2021-03-22 16:02,"https://web.archive.org/web/20210322200249/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-22,80,160,810,250,225,84,103,375,354,147,945,334,1452,485,233,235,1071,223,817,38,498,249,766,293,4663,242,353,519,357,319,546,661,1185,82,156,61,491,461,1977,49,3147,30,22,804,145,359,1223,108,164,5134,48,564,94,104,273,611,168,1409,304,59,221,229,11703,88,173,56,154,81,263,1371,87,173,780,266,36,271,1653,569,435,311,1703,8422,140,818,5,79,17,67223,2642,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",29568,33485,4170,3459,9005,,11886,9318,9020,8919,5853,2784,2358,4621,541,885,4948,34874,2082,1953,21940
2021-03-23 18:08,"https://web.archive.org/web/20210323220857/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-23,80,161,817,252,228,85,107,380,358,147,965,336,1467,486,237,241,1092,228,832,38,499,251,786,293,4747,243,354,529,363,320,546,679,1221,81,156,62,502,505,2044,50,3166,31,22,824,145,365,1229,111,166,5214,49,568,94,104,274,614,168,1433,309,60,224,230,11826,88,176,56,156,81,271,1389,90,185,779,275,37,284,1692,580,460,318,1725,8496,141,811,5,80,18,68187,2663,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",29992,33963,4232,3532,9170,,12047,9463,9153,9057,5903,2800,2358,4704,549,896,5002,35296,2094,1970,22380
2021-03-24 17:20,"https://web.archive.org/web/20210324212001/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-24,80,160,822,256,230,85,107,382,359,148,971,339,1483,489,240,242,1104,229,861,38,499,250,807,298,4791,243,354,536,372,323,547,679,1260,81,156,62,506,481,2067,53,3188,31,23,840,145,374,1245,111,167,5284,50,571,94,106,274,615,167,1452,309,62,224,234,11929,88,176,56,157,81,272,1399,93,198,773,295,36,292,1729,580,467,324,1742,8581,168,812,5,79,17,68905,2680,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",30358,34287,4260,3583,9348,,12182,9544,9256,9163,5932,2810,2362,4725,554,905,5060,35666,2111,1983,22626
2021-03-25 15:48,"https://web.archive.org/web/20210325194812/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-25,80,160,827,255,231,85,107,386,364,150,977,340,1486,491,239,245,1112,233,877,39,500,250,816,299,4846,245,354,545,373,324,550,695,1281,82,156,61,510,486,2097,53,3220,30,23,851,149,376,1260,112,167,5354,50,581,94,107,274,617,169,1447,312,62,227,235,12014,88,175,56,156,80,277,1419,94,201,774,297,36,302,1733,584,471,326,1764,8667,170,812,5,82,17,69524,2696,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",30635,34586,4303,3621,9463,,12312,9631,9350,9255,5970,2832,2367,4723,559,912,5115,36088,2133,2000,22717
2021-03-27 11:20,"https://web.archive.org/web/20210327152019/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-26,82,160,831,260,235,85,106,387,368,152,1000,340,1506,502,239,248,1125,235,918,40,506,250,840,299,4961,247,354,554,378,324,552,694,1313,82,157,61,523,515,2124,54,3247,30,22,865,149,382,1268,112,168,5453,48,590,94,106,275,621,170,1543,320,62,233,235,12126,88,175,57,156,86,284,1429,97,210,779,302,38,312,1798,589,474,331,1786,8747,171,814,5,85,17,70556,2743,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",35067,31107,4382,3686,9655,,12535,9776,9494,9387,6047,2854,2374,4748,569,929,5181,36481,2148,2019,23229
2021-03-28 18:48,"https://web.archive.org/web/20210328224800/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-27,82,160,835,258,237,85,106,391,373,154,1001,345,1509,502,239,247,1133,236,920,43,510,250,849,304,5100,250,357,560,379,325,551,708,1318,81,157,61,528,519,2142,54,3254,31,24,884,147,385,1280,112,168,5513,48,589,94,106,275,621,172,1545,321,62,238,235,12180,88,176,56,157,86,289,1452,97,214,781,303,38,315,1814,589,481,332,1799,8823,176,814,5,86,17,71131,2763,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",35326,31376,4429,3734,9771,,12645,9855,9570,9446,6087,2860,2386,4777,573,932,5222,36761,2153,2021,23469
2021-03-29 20:04,"https://web.archive.org/web/20210330000232/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-29,82,161,845,258,241,85,107,397,382,154,1020,349,1519,508,245,248,1136,236,951,43,509,251,887,306,5144,251,359,564,397,334,551,711,1389,81,157,61,534,527,2154,54,3277,31,23,886,149,391,1298,116,169,5645,49,602,96,108,275,622,171,1563,330,63,238,234,12322,88,176,56,158,86,291,1470,104,218,794,312,39,335,1847,597,480,340,1815,9013,176,814,5,90,17,72167,2809,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",31846,35799,4522,3788,9942,,12847,10035,9683,9597,6176,2885,2393,4821,579,944,5308,37313,2164,2058,23801
2021-03-30 16:41,"https://web.archive.org/web/20210330204153/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-30,81,162,849,263,244,86,107,400,396,155,1040,354,1553,513,247,249,1168,245,979,44,513,255,906,308,5216,255,360,565,407,339,555,727,1446,82,158,61,543,567,2169,55,3313,31,23,915,149,400,1316,117,169,5769,49,613,96,109,280,625,169,1612,330,63,246,235,12420,89,175,56,160,86,295,1497,105,217,804,331,39,358,1932,599,496,346,1836,9099,176,814,5,93,17,73296,2834,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",32312,36388,4596,3844,10141,,13055,10227,9869,9753,6240,2904,2401,4862,591,955,5366,37780,2170,2079,24355
2021-03-31 15:38,"https://web.archive.org/web/20210331193828/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-03-31,81,164,862,263,244,87,107,398,404,155,1046,355,1570,517,246,250,1177,250,998,46,516,257,930,312,5300,258,360,579,419,340,554,750,1480,82,159,61,550,584,2192,55,3346,31,23,934,149,404,1329,119,169,5803,49,619,97,110,280,626,177,1666,337,63,253,236,12448,88,176,56,163,86,299,1539,105,219,806,336,40,376,1964,605,519,357,1854,9173,176,814,5,93,17,74092,2855,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",32658,36768,4666,3886,10263,,13233,10366,9983,9869,6293,2913,2409,4877,598,962,5425,38206,2185,2094,24622
2021-04-01 16:03,"https://web.archive.org/web/20210401200349/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-01,81,166,872,270,245,88,107,406,412,156,1058,353,1585,517,249,254,1182,257,1021,46,522,258,949,314,5411,260,357,583,426,340,554,745,1524,82,160,61,560,611,2237,59,3375,31,23,965,150,415,1348,127,169,5904,50,626,97,113,279,629,177,1700,342,66,259,233,12531,90,175,56,165,86,300,1574,112,220,815,338,44,389,1999,609,534,368,1886,9322,190,815,5,97,18,75154,2883,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",33136,37283,4735,3959,10436,,13471,10544,10124,9988,6354,2939,2430,4909,605,972,5491,38683,2196,2119,25088
2021-04-02 15:58,"https://web.archive.org/web/20210402195845/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-02,81,166,876,270,249,88,107,408,423,157,1066,354,1589,518,250,256,1186,260,1043,47,526,258,957,314,5543,261,357,590,434,340,559,754,1531,82,159,61,567,629,2254,58,3412,31,23,991,153,414,1347,133,169,5925,50,630,99,113,281,632,177,1831,350,64,262,233,12531,90,175,56,167,86,301,1600,111,221,821,343,45,399,2034,611,540,366,1900,9337,190,815,5,97,18,75807,2888,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",33391,37601,4815,4001,10558,,13623,10635,10229,10052,6396,2952,2434,4927,612,972,5520,38908,2204,2128,25463
2021-04-04 17:59,"https://web.archive.org/web/20210404215943/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-03,84,166,889,271,250,89,107,411,434,161,1080,357,1606,528,250,257,1197,263,1030,49,527,258,961,316,5602,264,357,595,432,346,559,763,1541,83,160,61,564,645,2298,58,3418,31,24,1007,154,425,1365,133,171,6034,49,635,99,114,281,634,181,1881,352,64,266,233,12629,91,175,56,171,86,304,1625,115,221,827,350,47,395,2067,620,542,379,1922,9507,201,815,5,99,17,76686,2923,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",33825,38030,4831,4043,10678,,13829,10780,10380,10160,6455,2977,2441,4943,622,982,5614,39395,2216,2150,25707
2021-04-06 10:39,"https://web.archive.org/web/20210406143929/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-05,84,167,894,274,251,88,107,413,436,160,1088,362,1611,529,250,257,1199,266,1109,49,527,260,978,316,5656,270,357,602,466,346,565,761,1577,82,160,61,589,640,2299,58,3449,31,24,1019,157,427,1380,134,172,6083,49,647,100,118,282,636,182,1906,366,64,265,233,12709,91,176,56,172,86,306,1635,116,222,831,350,49,417,2076,624,541,381,1939,9670,200,815,5,103,17,77475,2969,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",34138,38378,4959,4096,10802,,13969,10924,10515,10261,6500,2999,2449,4960,628,982,5678,39717,2222,2160,26088
2021-04-06 17:56,"https://web.archive.org/web/20210406215618/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-06,93,167,900,271,254,88,107,422,445,162,1105,362,1648,527,251,259,1213,270,1126,50,531,262,995,321,5785,273,357,619,476,347,567,781,1587,82,160,61,622,681,2328,59,3485,31,24,1045,157,453,1404,134,175,6123,50,651,99,124,285,641,183,1938,366,64,266,235,12764,91,176,56,173,86,309,1667,122,227,837,378,50,433,2190,628,576,384,1986,9836,202,815,5,103,19,78660,3006,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",34667,38974,5019,4175,11102,,14124,11105,10717,10415,6569,3016,2457,4980,636,997,5740,40151,2229,2179,26728
2021-04-07 21:30,"https://web.archive.org/web/20210408013051/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-07,96,169,910,283,254,92,108,424,474,167,1121,368,1664,537,254,267,1227,274,1150,52,534,272,1002,338,5908,272,357,649,490,353,568,795,1599,83,163,63,638,707,2358,59,3504,31,24,1051,162,461,1463,137,184,6225,52,670,104,127,286,649,186,1960,374,66,277,235,12927,94,177,56,182,86,311,1722,129,227,854,385,50,456,2226,627,587,390,2011,10044,207,814,5,102,18,80014,3065,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",35320,39563,5131,4242,11519,,14354,11289,10912,10547,6634,3041,2469,5007,644,1016,5846,40889,2202,2232,27185
2021-04-08 18:56,"https://web.archive.org/web/20210408225619/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-08,99,174,920,295,263,93,110,423,493,167,1121,368,1664,539,256,270,1236,290,1161,52,534,271,1000,336,6012,308,357,652,513,352,569,792,1625,83,173,62,664,702,2371,60,3560,32,24,1061,163,465,1470,143,186,6258,50,684,105,129,291,645,186,1973,382,70,278,236,12967,92,185,56,184,87,313,1761,131,231,856,387,49,494,2232,629,599,389,2016,10097,210,817,5,108,18,80734,3085,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",35630,39912,5192,4294,11611,,14509,11413,11019,10642,6689,3059,2474,5024,649,1009,5909,41292,2253,2211,27411
2021-04-09 15:26,"https://web.archive.org/web/20210409192656/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-09,99,173,939,308,264,96,110,432,497,167,1137,371,1679,545,257,278,1243,289,1186,53,540,274,1009,342,6135,313,357,657,537,352,568,810,1649,84,172,62,670,728,2383,60,3611,31,24,1085,171,475,1491,148,192,6301,50,690,103,131,290,644,190,2028,390,72,278,237,13063,91,186,56,185,88,314,1784,133,236,863,399,50,509,2293,629,606,389,2053,10189,209,819,5,109,19,81734,3127,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",36065,40378,5291,4345,11753,,14730,11587,11188,10766,6740,3085,2483,5057,654,1009,5978,41737,2266,2216,27874
2021-04-11 21:17,"https://web.archive.org/web/20210412011751/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-10,97,174,950,309,270,96,110,432,503,171,1133,374,1688,547,268,278,1252,293,1216,53,540,278,1029,346,6208,311,357,671,556,352,568,811,1669,88,173,62,675,728,2404,60,3635,32,25,1107,175,480,1490,147,201,6330,50,699,102,131,292,647,193,2103,399,78,279,238,13081,95,188,56,185,88,314,1809,138,236,870,401,50,525,2301,631,604,390,2063,10263,208,818,5,111,18,82381,3143,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",36396,40684,5301,4384,11867,,14887,11696,11269,10833,6777,3103,2491,5074,663,1022,6033,42070,2271,2223,28099
2021-04-12 18:54,"https://web.archive.org/web/20210412225416/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-12,96,177,952,307,269,97,109,439,514,171,1157,379,1711,556,268,276,1252,301,1235,53,542,282,1042,346,6252,311,357,676,580,354,567,813,1693,82,173,63,679,754,2399,60,3666,32,27,1107,178,477,1525,147,202,6435,51,712,103,134,291,654,194,2169,409,78,284,239,13211,96,191,56,190,88,317,1833,137,240,874,408,50,538,2351,634,603,390,2066,10360,217,819,5,110,18,83260,3169,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",36761,41113,5386,4441,11983,,15068,11845,11401,10958,6857,3117,2496,5094,671,1041,6112,42481,2275,2244,28436
2021-04-13 20:22,"https://web.archive.org/web/20210414002254/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-13,112,178,980,330,272,97,110,454,526,174,1183,388,1752,559,280,287,1264,308,1266,53,557,283,1067,354,6376,316,357,689,584,356,576,814,1711,85,175,63,702,799,2428,61,3765,31,27,1126,182,499,1552,150,208,6531,53,718,105,136,291,656,193,2208,415,78,303,247,13289,98,214,56,191,93,320,1910,135,242,887,419,50,560,2409,644,610,399,2130,10439,220,820,5,112,18,84670,3199,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",37389,41778,5503,4543,12433,,15251,12054,11578,11113,6916,3138,2503,5141,679,1043,6187,43114,2290,2277,29080
2021-04-14 22:11,"https://web.archive.org/web/20210415021115/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-14,116,181,995,335,271,99,110,457,535,179,1210,390,1774,568,285,292,1269,316,1298,55,564,285,1079,358,6506,318,357,700,605,362,583,822,1743,83,177,62,728,804,2457,62,3900,31,27,1161,191,561,1580,154,210,6627,54,720,104,141,293,660,198,2207,427,77,359,251,13355,103,218,56,201,94,323,1969,137,243,907,422,50,576,2458,647,618,404,2132,10634,237,820,5,113,19,86064,3305,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",38002,42500,5562,4643,12860,,15501,12216,11744,11267,7002,3171,2513,5147,688,1056,6289,43688,2296,2311,29736
2021-04-15 16:56,"https://web.archive.org/web/20210415205630/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-15,120,181,996,341,275,99,110,461,550,178,1224,391,1794,573,287,288,1280,313,1303,54,564,287,1086,362,6668,318,357,704,614,364,582,832,1762,84,179,62,738,820,2467,62,3915,32,30,1177,194,560,1585,154,211,6732,55,729,103,140,298,661,207,2224,431,76,383,255,13435,104,220,56,205,95,330,1987,137,243,958,433,50,581,2478,649,631,408,2136,10726,244,826,5,114,19,86952,3346,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",38416,42938,5598,4703,13019,,15686,12340,11870,11384,7072,3188,2529,5161,691,1057,6359,44110,2325,2314,30096
2021-04-16 19:20,"https://web.archive.org/web/20210416232037/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-16,119,182,997,355,280,98,111,471,557,182,1260,394,1825,572,295,287,1288,323,1333,54,567,290,1095,364,6778,321,358,710,624,367,588,831,1774,83,181,62,749,844,2473,63,3944,32,30,1186,195,569,1599,156,214,6822,55,731,103,142,303,663,206,2259,435,76,390,253,13545,105,222,56,209,97,333,2027,138,249,958,445,50,584,2502,655,638,410,2144,10801,245,826,5,117,18,87847,3389,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",38786,43371,5690,4787,13169,,15875,12479,11992,11500,7120,3207,2535,5183,696,1061,6452,44497,2324,2326,30491
2021-04-18 21:40,"https://web.archive.org/web/20210419014000/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-17,118,182,993,360,282,100,111,485,558,180,1264,394,1834,576,298,292,1290,327,1347,57,568,291,1108,367,6843,324,358,714,632,367,587,826,1780,83,180,62,755,845,2490,65,3939,31,32,1197,199,568,1613,159,215,6897,56,729,107,147,302,661,209,2258,443,76,393,260,13607,107,227,56,212,95,334,2037,137,249,972,452,50,588,2521,658,643,415,2156,10869,256,826,5,118,19,88393,3422,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",39048,43645,5700,4836,13263,,15963,12553,12087,11558,7160,3216,2542,5215,699,1068,6519,44790,2337,2343,30637
2021-04-19 20:49,"https://web.archive.org/web/20210420004922/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-19,122,182,999,363,288,103,111,488,564,185,1272,406,1859,585,299,295,1291,334,1357,57,567,292,1113,368,6938,325,358,715,646,368,587,833,1780,84,181,62,763,852,2493,66,3989,31,32,1196,201,588,1634,160,216,6930,56,733,108,148,303,667,209,2262,453,77,404,259,13672,109,234,56,211,100,338,2058,135,249,976,450,50,594,2535,667,646,420,2163,10897,256,826,5,117,19,88990,3438,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",39327,43925,5738,4910,13355,,16070,12642,12160,11628,7195,3233,2553,5244,704,1076,6559,45049,2341,2359,30902
2021-04-20 16:27,"https://web.archive.org/web/20210420202705/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-20,122,184,1006,369,294,103,111,495,571,187,1292,405,1858,592,312,308,1307,338,1379,57,575,296,1119,369,7022,333,358,747,653,370,590,845,1810,85,181,63,767,885,2608,69,3998,31,33,1216,202,610,1660,164,218,7059,57,743,118,150,303,673,213,2299,460,79,424,266,13811,116,240,56,209,95,339,2075,138,249,1064,462,52,601,2585,665,668,423,2184,11052,262,827,5,120,23,90332,3481,"Note: 2021-04-20 numbers were taken from the dashboard because the public data spreadsheets were not updated
The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",39885,44611,5836,5011,13645,,16289,12833,12328,11746,7288,3260,2560,5372,713,1086,6673,45539,2369,2383,31569
2021-04-21 16:05,"https://web.archive.org/web/20210421200510/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-21,125,185,1015,376,296,105,111,508,582,191,1294,410,1877,591,313,309,1308,339,1383,57,576,299,1123,372,7067,335,358,751,655,371,594,844,1830,87,182,63,770,892,2615,69,4010,31,33,1222,205,624,1665,164,218,7074,58,752,119,151,306,672,217,2305,466,80,430,267,13826,117,242,56,213,97,339,2100,141,249,1067,468,53,601,2593,674,669,424,2196,11065,268,827,5,116,18,90721,3479,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",40053,44812,5856,5044,13818,,16364,12863,12351,11762,7307,3264,2561,5387,714,1090,6707,45803,2367,2392,31648
2021-04-22 16:08,"https://web.archive.org/web/20210422200827/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-22,126,184,1021,379,297,105,111,514,580,188,1305,412,1921,594,321,309,1314,339,1386,59,578,303,1126,389,7178,340,359,750,659,371,595,847,1837,85,182,63,775,903,2628,70,4038,31,37,1239,203,618,1688,164,220,7163,61,761,118,151,308,672,218,2311,476,79,440,269,13890,118,245,56,216,92,345,2109,141,250,1084,472,53,606,2598,677,674,424,2194,11119,269,827,5,115,18,91365,3500,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",40384,45078,5903,5120,13950,,16501,12945,12416,11851,7343,3272,2570,5397,722,1102,6752,46134,2383,2406,31866
2021-04-23 20:37,"https://web.archive.org/web/20210424003738/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-23,131,184,1023,381,298,105,111,515,589,192,1312,414,1925,592,327,309,1320,341,1412,63,583,305,1130,395,7253,341,359,762,678,370,596,851,1847,85,182,64,778,905,2636,70,4060,31,37,1255,205,617,1698,169,221,7236,63,772,117,152,307,674,223,2314,484,79,418,276,13949,118,248,56,222,94,348,2115,142,252,1101,473,54,621,2598,682,678,424,2217,11193,281,827,5,116,18,91974,3540,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",40656,45383,5935,5189,14042,,16608,13057,12505,11919,7374,3274,2580,5426,728,1109,6817,46416,2400,2414,32090
2021-04-25 11:28,"https://web.archive.org/web/20210425152847/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-24,130,185,1025,384,297,105,112,514,597,192,1318,416,1929,594,332,306,1324,344,1429,59,611,306,1130,400,7271,344,359,767,687,371,597,926,1859,89,183,65,783,913,2660,70,4075,31,37,1258,204,615,1713,172,219,7255,66,771,115,150,309,672,223,2335,488,80,422,276,14036,118,248,56,225,93,347,2128,142,253,1119,473,55,623,2600,690,689,424,2219,11222,285,826,5,116,19,92480,3542,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",40846,45599,6035,5234,14097,,16690,13135,12561,11950,7394,3285,2585,5549,731,1111,6850,46659,2406,2418,32305
2021-04-26 16:01,"https://web.archive.org/web/20210426200156/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-26,131,185,1029,383,301,104,112,512,601,195,1322,417,1951,597,335,310,1328,345,1449,59,610,311,1151,405,7349,350,360,769,699,373,597,932,1879,85,184,65,789,919,2665,69,4112,31,38,1261,206,626,1725,172,220,7289,66,776,116,150,308,692,224,2346,496,79,440,277,14069,118,250,56,227,93,348,2138,141,257,1123,479,56,621,2605,691,691,428,2221,11294,286,826,5,117,19,93036,3568,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",41104,45858,6074,5281,14217,,16795,13221,12644,12012,7420,3302,2588,5556,738,1112,6884,46910,2408,2430,32554
2021-04-27 19:35,"https://web.archive.org/web/20210427233533/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-27,132,186,1036,386,302,106,113,526,616,197,1347,420,1966,604,336,309,1338,345,1454,59,616,312,1174,411,7434,354,360,776,719,373,593,945,1895,84,184,65,805,932,2699,71,4150,31,40,1280,206,632,1752,174,224,7368,72,775,119,157,310,692,227,2367,504,79,460,289,14075,121,248,56,231,92,353,2178,144,261,1159,493,59,632,2646,694,700,430,2243,11381,288,826,5,118,23,93944,3601,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",41493,46313,6138,5336,14587,,16915,13325,12714,12074,7464,3312,2596,5621,742,1121,6955,47374,2450,2414,32888
2021-04-28 19:03,"https://web.archive.org/web/20210428210316/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-28,129,187,1040,394,305,105,113,528,613,199,1357,425,1959,607,336,312,1336,354,1461,59,631,315,1173,417,7497,364,360,779,733,375,594,1004,1920,85,184,65,806,933,2704,71,4156,31,40,1295,205,632,1767,176,224,7413,73,781,120,158,312,692,230,2371,509,81,475,289,14127,123,249,56,239,92,361,2187,147,265,1177,492,58,640,2653,692,701,427,2255,11447,298,826,5,120,20,94516,3627,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",41727,46586,6203,5387,14652,,16998,13433,12780,12139,7502,3324,2609,5692,747,1127,7009,47644,2431,2462,33096
2021-04-29 22:47,"https://web.archive.org/web/20210430024742/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-29,130,187,1042,397,311,107,113,532,615,202,1369,427,1964,612,341,310,1342,357,1464,61,630,319,1179,421,7570,366,360,780,735,377,594,1007,1932,86,186,65,810,936,2708,70,4172,31,40,1305,205,641,1791,178,224,7482,77,783,121,160,312,696,228,2373,509,84,466,290,14255,122,251,56,247,92,362,2199,148,265,1183,491,58,641,2650,697,704,427,2271,11516,298,827,5,121,22,95090,3655,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",42016,46854,6220,5461,14760,,17103,13507,12860,12182,7546,3334,2617,5720,757,1134,7080,47967,2439,2476,33237
2021-04-30 16:53,"https://web.archive.org/web/20210430205316/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-04-30,131,187,1044,395,311,106,114,534,621,203,1383,428,1980,615,347,310,1343,362,1476,61,629,318,1182,422,7619,366,361,782,749,379,594,1010,1938,88,186,66,832,956,2707,70,4181,31,40,1310,205,639,1801,180,224,7515,72,785,121,158,313,701,228,2402,513,84,465,289,14306,124,250,57,245,92,365,2204,148,264,1190,500,58,646,2674,699,714,429,2276,11538,298,827,5,122,20,95513,3656,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",47044,42202,6267,5504,14831,,17196,13577,12924,12239,7566,3338,2622,5716,759,1134,7109,48162,2452,2481,33416
2021-05-02 15:53,"https://web.archive.org/web/20210502195315/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-01,132,187,1049,395,312,107,114,529,624,203,1386,431,1982,615,348,310,1346,364,1480,61,637,319,1186,425,7637,364,361,785,755,381,594,1012,1950,86,186,66,831,959,2722,70,4187,31,40,1308,206,645,1811,184,224,7529,75,786,121,158,315,701,226,2402,514,84,472,289,14371,124,251,57,245,92,371,2210,147,264,1197,498,60,644,2678,702,717,436,2276,11568,297,828,5,123,20,95790,3666,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",42330,47191,6269,5528,14853,,17257,13628,12971,12273,7583,3349,2626,5722,760,1140,7133,48332,2463,2499,33463
2021-05-03 16:12,"https://web.archive.org/web/20210503201257/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-03,128,187,1051,397,314,106,114,534,624,204,1415,432,2003,619,349,311,1352,366,1489,61,640,320,1187,428,7716,366,360,784,761,383,595,1008,1952,86,186,65,835,980,2726,70,4229,31,40,1313,207,648,1826,186,225,7568,75,794,121,159,317,708,226,2416,523,84,488,288,14418,122,250,57,247,91,373,2218,148,265,1210,497,61,647,2698,704,716,437,2275,11628,297,828,5,123,21,96312,3697,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",42552,47474,6286,5569,14952,,17358,13726,13040,12307,7613,3359,2638,5750,761,1145,7194,48578,2475,2507,33652
2021-05-05 08:34,"https://web.archive.org/web/20210505123423/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-04,128,187,1059,403,315,107,115,533,633,207,1426,434,2009,626,346,314,1357,367,1491,60,644,324,1194,430,7759,366,360,791,771,381,598,1010,1963,88,188,66,843,987,2752,71,4279,31,43,1322,211,653,1839,193,225,7606,74,791,122,161,316,701,233,2426,532,84,502,303,14479,124,251,56,246,95,379,2251,150,266,1230,502,62,651,2701,712,719,441,2287,11664,308,832,5,123,21,96905,3709,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",42821,47779,6305,5603,15188,,17439,13794,13102,12357,7634,3379,2633,5776,763,1153,7257,48919,2497,2510,33806
2021-05-05 16:05,"https://web.archive.org/web/20210505200520/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-05,128,187,1063,411,316,107,118,542,636,207,1427,437,2010,631,346,314,1363,368,1500,61,642,326,1195,433,7780,369,360,793,772,383,598,1014,1967,87,188,67,854,987,2757,71,4290,31,43,1326,211,663,1845,193,226,7635,76,791,122,162,317,696,234,2428,536,84,500,305,14648,124,253,56,248,95,386,2269,151,267,1238,502,62,652,2702,711,720,441,2297,11704,316,839,5,122,26,97363,3728,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",43009,47982,6372,5658,15240,,17547,13861,13176,12416,7664,3388,2638,5775,764,1158,7307,49143,2511,2521,33959
2021-05-06 16:34,"https://web.archive.org/web/20210506203427/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-06,131,188,1074,415,317,107,118,542,641,210,1435,439,2017,630,348,315,1365,401,1502,64,651,327,1203,434,7824,372,360,790,778,384,599,1020,1982,87,188,66,861,990,2768,74,4295,31,43,1327,210,662,1857,196,227,7672,82,794,123,167,317,700,237,2429,542,84,506,305,14847,127,254,56,251,97,391,2276,150,269,1242,503,65,651,2697,711,729,444,2316,11760,319,834,5,122,23,97962,3760,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",43309,48231,6422,5716,15326,,17645,13965,13271,12481,7693,3402,2651,5812,767,1162,7365,49439,2524,2544,34161
2021-05-07 18:57,"https://web.archive.org/web/20210507225702/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-07,131,188,1077,414,320,107,118,544,643,211,1443,437,2034,627,348,315,1366,403,1503,64,654,326,1199,435,7844,372,360,793,779,384,602,1015,1986,89,187,66,864,1000,2773,74,4303,31,43,1332,211,663,1862,204,227,7700,82,796,123,169,318,704,237,2449,539,85,507,307,15204,128,256,57,251,98,386,2281,152,270,1244,505,65,652,2720,713,739,447,2313,11794,319,836,5,122,27,98571,3773,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",43585,48521,6465,5771,15448,,17768,14081,13349,12546,7718,3412,2654,5824,776,1165,7405,49600,2540,2557,34528
2021-05-09 20:08,"https://web.archive.org/web/20210510000844/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-08,131,188,1081,412,322,107,118,546,646,213,1449,436,2039,630,349,314,1368,403,1518,69,658,326,1199,437,7922,373,360,797,787,384,602,1016,1993,87,189,66,873,1014,2782,74,4328,31,43,1342,211,667,1876,208,229,7743,82,796,123,169,319,698,237,2453,543,86,520,307,15492,130,258,57,250,102,388,2294,151,273,1256,505,66,653,2760,715,749,448,2326,11853,322,836,5,126,19,99323,3792,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",43880,48851,6592,5853,15560,,17930,14196,13446,12623,7763,3428,2654,5870,782,1174,7482,49872,2550,2578,34885
2021-05-10 15:50,"https://web.archive.org/web/20210510195057/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-10,131,189,1086,414,322,109,119,546,643,213,1460,437,2052,630,349,313,1370,407,1523,67,665,326,1202,439,7926,373,360,795,796,387,602,1016,2001,87,188,67,882,1016,2784,74,4349,31,43,1342,211,666,1884,209,229,7775,83,799,123,168,318,698,237,2477,545,85,510,308,15503,128,258,57,251,102,390,2299,152,272,1266,505,67,658,2771,720,745,450,2330,11893,323,836,5,126,31,99594,3804,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",44008,48972,6614,5875,15607,,17964,14250,13496,12659,7768,3436,2654,5885,783,1176,7513,50008,2557,2580,34977
2021-05-11 15:41,"https://web.archive.org/web/20210511194124/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-11,131,190,1099,418,324,111,121,549,643,213,1467,437,2058,629,351,314,1378,411,1524,67,666,326,1204,438,7963,375,361,797,806,388,603,1020,2009,87,190,67,880,1036,2786,74,4362,31,43,1341,211,681,1890,214,232,7811,83,797,124,169,318,700,239,2484,549,86,514,310,15754,128,265,57,254,103,388,2314,154,273,1292,509,69,655,2827,724,758,448,2341,11942,322,839,5,126,23,100270,3820,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",44300,49298,6672,5907,15783,,18076,14350,13577,12717,7791,3446,2658,5965,785,1187,7543,50249,2573,2585,35348
2021-05-12 21:40,"https://web.archive.org/web/20210513014052/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-12,130,191,1100,420,330,111,122,553,645,214,1476,440,2061,632,354,316,1380,413,1530,67,670,328,1215,441,7991,375,360,799,812,389,606,1027,2018,90,192,67,885,1033,2803,76,4426,31,44,1339,213,678,1901,221,237,7839,85,799,126,173,321,699,240,2494,555,88,519,318,15919,129,265,56,254,103,388,2331,157,275,1296,510,72,660,2849,724,759,449,2350,11991,329,839,5,127,19,100864,3844,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",44528,49582,6754,5945,15915,,18155,14426,13666,12787,7826,3453,2667,6024,789,1196,7588,50536,2586,2598,35571
2021-05-13 16:41,"https://web.archive.org/web/20210513204116/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-13,130,191,1104,422,330,112,122,551,648,214,1482,441,2069,634,357,320,1381,413,1532,67,667,328,1222,449,8022,375,360,802,815,389,607,1032,2030,88,192,67,885,1030,2809,76,4441,31,45,1342,215,685,1906,225,238,7871,85,802,126,175,322,707,242,2496,556,89,520,318,15955,129,263,56,260,103,390,2332,158,274,1301,511,74,665,2856,725,762,449,2357,12034,332,839,5,127,18,101177,3852,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",44653,49736,6788,5975,15955,,18205,14474,13710,12831,7856,3461,2667,6043,792,1197,7621,50682,2594,2611,35680
2021-05-14 16:03,"https://web.archive.org/web/20210514200304/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-14,130,192,1107,424,331,115,123,557,652,215,1485,442,2073,635,361,322,1380,412,1539,68,669,328,1227,451,8037,378,360,802,819,389,607,1034,2043,88,198,67,887,1039,2818,76,4450,31,45,1344,215,686,1911,226,242,7905,85,804,126,175,322,710,242,2498,564,89,520,322,16000,129,265,56,260,104,398,2336,157,274,1310,511,78,663,2877,726,762,453,2355,12079,336,840,5,128,19,101513,3878,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",44799,49913,6801,5995,16019,,18268,14525,13749,12879,7883,3467,2674,6054,794,1204,7652,50873,2602,2617,35771
2021-05-15 17:57,"https://web.archive.org/web/20210515215747/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-15,130,192,1108,424,332,115,123,557,658,215,1497,443,2083,636,361,323,1383,413,1541,68,672,329,1229,455,8048,380,360,803,824,390,605,1029,2043,88,198,67,888,1046,2827,76,4449,32,46,1353,215,687,1914,226,240,7917,85,804,125,175,323,706,242,2503,563,90,521,322,16051,130,263,56,261,103,399,2344,157,274,1312,513,78,663,2885,726,766,455,2359,12093,338,841,5,128,18,101715,3881,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",44907,50011,6797,6015,16050,,18318,14558,13782,12894,7895,3472,2679,6052,794,1205,7678,50977,2611,2627,35823
2021-05-17 17:55,"https://web.archive.org/web/20210517215513/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-17,130,192,1110,424,333,116,123,557,660,215,1500,444,2089,638,361,324,1384,413,1553,68,672,331,1236,458,8063,382,362,804,828,391,605,1027,2077,88,198,67,892,1047,2827,76,4554,33,46,1354,215,694,1919,228,242,7938,85,808,125,175,322,706,242,2503,567,90,525,325,16077,130,265,56,261,103,399,2350,157,273,1317,514,79,664,2888,727,766,454,2362,12127,337,841,5,129,19,102061,3894,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",45074,50163,6824,6035,16104,,18405,14620,13824,12936,7915,3471,2681,6070,797,1210,7706,51200,2610,2647,35891
2021-05-18 15:37,"https://web.archive.org/web/20210518193710/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-18,130,192,1128,429,327,116,123,570,664,215,1525,443,2084,662,364,324,1386,414,1561,68,672,331,1236,460,8077,383,362,805,831,392,605,1023,2078,90,198,68,897,1052,2829,76,4536,33,46,1360,215,691,1924,229,244,7959,85,811,125,175,323,707,241,2505,572,90,527,326,16095,131,266,56,260,102,399,2377,158,272,1326,514,79,673,2911,731,770,454,2362,12142,340,841,5,128,19,102325,3904,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",45177,50277,6871,6071,16131,,18451,14655,13853,12965,7933,3484,2684,6098,798,1216,7729,51334,2648,2611,35989
2021-05-19 16:46,"https://web.archive.org/web/20210519214629/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-19,131,192,1131,432,328,115,123,570,664,215,1531,440,2102,663,364,328,1387,413,1565,69,674,333,1246,461,8079,384,363,808,833,391,606,1025,2111,90,199,68,917,1060,2841,76,4548,32,46,1365,216,694,1929,237,246,8009,86,811,125,176,323,708,241,2511,571,90,533,329,16127,132,269,57,261,103,406,2402,158,272,1327,516,78,674,2951,732,770,454,2372,12161,343,845,5,128,18,102715,3902,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",45362,50480,6873,6106,16257,,18515,14702,13901,12994,7952,3486,2688,6114,800,1220,7760,51538,2626,2658,36113
2021-05-20 16:48,"https://web.archive.org/web/20210520204856/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-20,132,192,1134,434,329,115,122,571,669,215,1539,441,2105,663,366,330,1388,413,1570,70,675,333,1247,460,8101,386,362,809,836,391,606,1024,2125,91,199,68,919,1067,2852,76,4547,32,46,1367,217,695,1933,241,250,8028,86,812,128,177,323,708,242,2521,571,90,535,329,16124,132,269,58,261,103,406,2405,158,272,1332,517,78,677,2964,733,773,455,2371,12182,343,845,5,128,19,102913,3910,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",45445,50586,6882,6122,16293,,18549,14730,13925,13014,7964,3490,2695,6131,802,1220,7776,51674,2630,2660,36151
2021-05-21 21:04,"https://web.archive.org/web/20210522010404/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-21,132,192,1134,435,329,117,122,572,669,215,1546,438,2110,667,368,330,1389,413,1571,71,680,334,1252,461,8115,387,362,809,836,392,607,1028,2126,90,197,68,917,1068,2852,76,4560,32,46,1368,218,694,1936,243,250,8033,86,812,128,177,324,709,242,2526,574,90,536,329,16125,132,270,58,262,103,411,2406,158,271,1340,516,79,679,2963,737,773,458,2373,12197,342,845,5,129,18,103040,3914,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",45498,50658,6884,6141,16308,,18576,14738,13942,13028,7971,3497,2695,6144,808,1217,7804,51763,2638,2660,36150
2021-05-23 15:31,"https://web.archive.org/web/20210523193105/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-22,132,193,1139,436,327,116,122,571,667,215,1547,437,2110,667,370,330,1390,413,1571,71,681,335,1254,461,8117,386,362,810,836,392,606,1028,2139,91,196,68,918,1067,2849,76,4669,32,46,1369,218,694,1940,248,250,8043,86,813,128,177,325,705,242,2533,574,91,537,331,16145,132,269,58,262,103,411,2408,159,271,1339,517,82,677,2962,735,773,458,2376,12213,342,845,5,126,18,103233,3923,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",45598,50760,6875,6147,16345,,18624,14769,13970,13053,7979,3507,2705,6134,809,1222,7821,51924,2645,2666,36146
2021-05-24 15:46,"https://web.archive.org/web/20210524194659/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-24,132,193,1140,442,327,117,122,571,665,215,1550,440,2117,668,371,330,1390,414,1571,71,683,335,1257,461,8126,386,362,811,839,394,606,1027,2138,91,196,69,924,1072,2850,76,4680,32,45,1370,217,693,1941,248,250,8062,87,814,128,177,325,705,243,2534,574,92,541,332,16153,132,269,58,261,103,411,2409,159,271,1339,517,82,680,2974,738,778,458,2381,12243,342,845,5,129,18,103394,3936,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",45675,50843,6876,6160,16359,,18647,14790,13991,13068,7989,3507,2708,6175,808,1220,7845,51976,2649,2667,36229
2021-05-25 16:43,"https://web.archive.org/web/20210525204326/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-25,132,194,1140,442,328,117,122,573,667,216,1554,440,2120,680,372,329,1391,414,1574,71,684,335,1258,461,8141,386,362,815,840,393,606,1027,2139,91,196,69,926,1082,2864,76,4692,32,45,1370,217,696,1944,249,251,8080,87,816,128,177,325,705,242,2537,575,92,543,332,16178,132,270,58,261,103,411,2414,159,271,1350,517,83,688,3005,738,781,462,2388,12260,342,845,5,127,18,103628,3942,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",45765,50960,6903,6175,16412,,18687,14817,14023,13086,7998,3508,2717,6205,809,1224,7863,52067,2661,2678,36326
2021-05-26 21:18,"https://web.archive.org/web/20210527011839/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-26,132,194,1142,443,329,117,122,583,671,217,1555,440,2122,680,373,330,1391,414,1582,71,686,335,1263,461,8145,386,362,815,844,395,606,1028,2149,91,198,69,927,1081,2869,76,4702,32,46,1372,217,696,1949,251,251,8098,87,817,129,178,325,709,244,2547,578,93,547,336,16209,141,271,59,261,104,412,2423,159,271,1355,521,83,693,3029,740,781,463,2387,12281,346,846,5,128,18,103884,3952,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",45893,51079,6912,6194,16479,,18729,14853,14057,13111,8010,3518,2720,6213,810,1227,7897,52229,2672,2683,36366
2021-05-27 16:52,"https://web.archive.org/web/20210527205234/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-27,132,194,1143,442,330,117,122,584,673,217,1555,439,2125,680,371,330,1393,419,1583,71,687,335,1262,461,8155,386,362,815,842,394,606,1028,2150,91,197,69,930,1086,2867,76,4702,32,46,1372,217,697,1951,251,252,8095,86,818,129,179,325,711,244,2553,580,93,548,337,16236,141,272,59,261,103,412,2425,159,271,1357,523,83,691,3044,740,779,463,2385,12294,346,846,5,128,18,103978,3959,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",45936,51133,6909,6202,16479,,18747,14881,14072,13123,8012,3520,2725,6217,813,1228,7900,52298,2679,2683,36377
2021-05-28 15:57,"http://web.archive.org/web/20210528195751/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-28,132,194,1146,443,329,117,126,592,673,217,1558,439,2130,680,372,332,1393,419,1587,74,689,336,1267,461,8151,388,362,815,847,393,606,1028,2148,91,197,69,932,1088,2868,76,4704,32,46,1373,218,697,1953,252,252,8102,86,819,128,179,325,712,245,2557,586,92,549,337,16263,141,271,59,262,104,410,2429,160,272,1355,524,83,696,3044,739,779,462,2390,12302,346,846,5,129,18,104098,3961,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",45993,51187,6918,6212,16500,,18765,14897,14096,13135,8026,3523,2730,6214,819,1230,7909,52371,2684,2687,36398
2021-05-29 17:02,"http://web.archive.org/web/20210529210242/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-05-29,132,194,1147,443,329,117,125,591,673,216,1559,440,2135,681,372,332,1394,420,1588,74,690,336,1267,462,8157,388,362,816,847,393,606,1029,2161,91,197,69,935,1088,2870,76,4707,32,46,1374,218,697,1953,253,252,8119,87,821,129,178,325,713,245,2575,586,92,549,338,16282,141,271,58,262,104,411,2434,160,272,1355,524,83,697,3049,740,778,462,2391,12313,346,846,5,129,18,104222,3970,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",46056,51246,6920,6225,16517,,18791,14920,14111,13150,8039,3527,2729,6213,820,1232,7928,52455,2685,2698,36404
2021-06-02 12:34,"https://web.archive.org/web/20210602163456/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-06-01,132,194,1149,443,329,117,125,594,673,216,1568,440,2142,682,372,335,1394,421,1594,74,689,337,1268,462,8157,387,362,817,848,393,606,1032,2164,91,197,69,935,1093,2872,76,4712,32,46,1374,218,700,1955,253,253,8124,88,821,129,178,325,716,246,2579,587,92,551,338,16293,141,271,58,264,104,413,2442,161,273,1353,524,84,697,3048,743,779,464,2389,12334,345,846,5,129,18,104344,3976,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",46150,51343,6928,6243,16566,,18828,14954,14131,13180,8048,3529,2730,6212,819,1233,7941,52592,2688,2700,36448
2021-06-03 10:46,"https://web.archive.org/web/20210603144621/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-06-02,132,194,1152,443,330,118,125,594,675,216,1566,441,2138,682,372,339,1394,421,1593,73,699,340,1276,462,8160,387,364,816,848,393,606,1032,2165,91,197,69,937,1089,2872,76,4713,32,46,1374,218,700,1954,254,253,8143,87,820,130,178,327,715,246,2579,589,92,554,339,16297,143,271,60,264,105,411,2441,162,274,1354,524,83,697,3057,750,779,463,2392,12332,345,845,5,129,18,104421,3970,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",46150,51343,6928,6243,16566,,18828,14954,14131,13180,8048,3529,2730,6212,819,1233,7941,52592,2688,2700,36448
2021-06-04 10:35,"https://web.archive.org/web/20210604143501/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-06-03,132,194,1150,444,329,118,125,595,676,216,1565,441,2136,682,373,340,1394,421,1594,73,712,340,1277,462,8162,386,364,816,849,393,607,1032,2164,91,197,69,936,1087,2872,76,4710,32,46,1377,218,698,1954,254,254,8150,87,819,131,178,329,715,246,2579,588,92,553,340,16309,143,268,60,263,105,412,2441,162,274,1361,523,83,697,3056,744,779,462,2385,12335,345,845,5,126,18,104441,3972,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",46171,51349,6921,6247,16570,,18834,14955,14138,13187,8047,3531,2731,6201,818,1234,7951,52621,2688,2699,36430
2021-06-04 14:22,"https://web.archive.org/web/20210604182245/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-06-04,132,194,1153,444,328,118,125,595,677,216,1565,440,2137,685,370,340,1395,421,1596,73,713,338,1278,463,8165,386,362,818,849,394,607,1035,2164,91,197,69,937,1087,2873,76,4713,32,45,1377,218,699,1955,255,256,8156,88,819,131,178,328,719,245,2582,589,92,553,340,16350,146,269,60,263,107,412,2438,162,276,1361,523,83,697,3062,749,780,464,2382,12350,345,845,5,126,18,104549,3979,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",46224,51397,6928,6256,16588,,18851,14971,14156,13204,8053,3537,2732,6201,822,1233,7964,52670,2690,2707,36463
2021-06-05 16:19,"https://web.archive.org/web/20210605201916/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-06-05,132,194,1154,444,328,118,125,595,677,216,1566,440,2139,685,370,340,1395,421,1597,73,714,339,1277,465,8165,386,362,818,849,393,607,1035,2166,91,197,69,937,1087,2873,78,4723,32,45,1376,218,699,1955,255,256,8155,88,820,131,178,327,719,245,2583,590,92,553,340,16359,146,269,60,263,107,412,2444,162,276,1363,522,83,697,3071,742,780,464,2383,12351,345,845,5,126,18,104590,3980,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",46252,51411,6927,6256,16594,,18861,14980,14153,13206,8062,3537,2732,6209,822,1233,7965,52704,2692,2708,36466
2021-06-07 16:43,"https://web.archive.org/web/20210607204311/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-06-07,132,195,1155,443,328,118,125,595,675,216,1564,440,2139,685,370,341,1395,421,1597,73,714,339,1277,465,8167,386,362,817,849,393,607,1036,2166,91,198,69,938,1089,2874,78,4729,32,45,1376,218,699,1956,254,255,8164,88,820,131,178,327,717,245,2585,591,92,554,340,16370,146,269,60,263,107,412,2445,162,278,1361,522,83,697,3073,742,780,464,2384,12358,345,845,5,126,18,104633,3981,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",46265,51436,6932,6262,16597,,18873,14986,14162,13208,8066,3537,2733,6209,821,1236,7973,52719,2696,2711,36477
2021-06-08 16:37,"https://web.archive.org/web/20210608203713/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-06-08,132,195,1157,445,329,118,125,594,675,216,1565,440,2143,687,370,343,1395,421,1598,73,714,340,1277,465,8172,386,362,818,849,394,607,1038,2168,92,198,69,938,1089,2876,78,4728,32,45,1376,218,698,1958,254,255,8172,88,821,131,178,327,717,244,2584,592,91,554,340,16376,146,270,63,263,108,415,2445,162,278,1363,523,83,697,3076,743,780,466,2384,12367,345,845,5,127,18,104702,3986,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",46294,51474,6934,6269,16614,,18888,14995,14172,13210,8071,3540,2733,6210,822,1237,7980,52765,2700,2714,36484
2021-06-09 15:16,"https://web.archive.org/web/20210609191646/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-06-09,132,195,1157,446,329,118,125,594,675,216,1565,441,2147,688,370,343,1395,421,1599,73,713,340,1278,465,8172,386,362,818,849,393,607,1037,2170,91,198,69,938,1090,2876,78,4751,32,45,1377,218,698,1958,254,255,8172,88,822,131,178,328,717,244,2585,592,91,555,340,16384,146,270,61,263,108,415,2442,162,278,1359,523,83,699,3085,739,780,465,2384,12374,345,846,5,127,18,104751,3986,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",46330,51486,6935,6277,16632,,18885,15000,14179,13212,8073,3541,2732,6220,820,1237,7990,52787,2702,2719,36496
2021-06-10 17:48,"https://web.archive.org/web/20210610214817/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-06-10,132,195,1159,445,329,118,125,594,675,216,1565,441,2152,689,370,343,1410,421,1600,73,713,340,1279,465,8173,386,362,818,848,392,607,1037,2178,91,198,69,938,1092,2876,78,4758,32,45,1378,218,700,1959,254,256,8177,88,822,131,179,327,717,244,2593,592,91,555,340,16386,146,270,61,263,108,415,2440,162,278,1359,522,83,699,3085,737,780,464,2385,12379,345,846,5,128,18,104812,3988,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",46354,51526,6932,6278,16636,,18906,15016,14180,13228,8073,3543,2731,6221,825,1236,7997,52827,2706,2723,36498
2021-06-11 22:41,"https://web.archive.org/web/20210612024115/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-06-11,132,195,1162,446,329,118,125,594,673,216,1565,444,2152,692,370,343,1411,421,1603,73,713,340,1279,461,8174,386,362,818,848,391,607,1034,2177,91,197,69,938,1092,2876,78,4745,32,46,1379,218,700,1959,254,255,8188,88,821,131,178,328,717,244,2591,592,90,555,343,16393,146,269,61,263,107,415,2442,162,278,1358,522,83,699,3086,734,780,465,2385,12383,346,846,5,128,18,104823,3991,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",46355,51538,6930,6276,16629,,18913,15014,14186,13231,8074,3543,2732,6225,825,1238,8006,52854,2712,2727,36461
2021-06-12 17:56,"https://web.archive.org/web/20210612215615/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-06-12,132,195,1162,446,329,118,125,594,673,217,1565,444,2154,692,370,343,1410,421,1603,73,713,339,1279,461,8178,386,362,818,848,391,607,1034,2177,91,197,69,938,1094,2877,78,4744,32,46,1379,218,700,1960,254,256,8192,88,821,131,178,328,717,244,2594,592,90,555,344,16395,146,269,61,263,107,415,2444,161,278,1358,522,83,698,3087,734,780,465,2385,12395,346,846,5,128,18,104855,3997,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",46365,51560,6930,6278,16639,,18920,15020,14187,13234,8075,3543,2735,6224,825,1238,8015,52872,2711,2727,36467
2021-06-14 19:49,"https://web.archive.org/web/20210614234936/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-06-14,132,195,1162,446,330,118,125,594,674,217,1566,443,2153,693,370,343,1410,421,1603,73,713,339,1278,461,8178,386,362,818,848,391,607,1035,2177,92,197,69,938,1094,2879,78,4769,32,46,1379,218,700,1960,254,256,8195,88,821,131,178,328,717,244,2595,592,90,556,343,16402,146,269,61,263,107,415,2443,162,278,1360,522,85,698,3087,735,780,465,2386,12399,346,846,5,128,18,104906,3999,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",46381,51585,6940,6279,16646,,18933,15024,14188,13234,8076,3545,2734,6247,825,1239,8019,52894,2711,2731,36487
2021-06-15 08:58,"https://web.archive.org/web/20210616125857/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-06-15,132,195,1161,446,330,118,125,595,674,216,1566,441,2154,693,370,343,1413,421,1605,73,713,341,1278,461,8181,386,362,818,848,390,607,1035,2179,91,197,69,939,1094,2879,78,4764,32,46,1382,218,701,1961,255,256,8202,88,821,131,178,329,717,244,2604,592,90,556,343,16402,146,269,61,263,107,415,2441,162,278,1360,522,85,698,3089,733,780,465,2389,12409,346,846,5,128,18,104944,4005,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.
Source: Michigan Disease Surveillance System (MDSS) and Vital Records",46396,51610,6938,6281,16648,,18943,15033,14197,13238,8081,3545,2731,6247,825,1239,8028,52918,2711,2736,36487
2021-06-16 20:57,"https://web.archive.org/web/20210617005740/https://www.michigan.gov/coronavirus/0,9753,7-406-98163_98173---,00.html",2021-06-16,132,195,1161,446,330,118,125,594,674,216,1566,442,2155,693,370,343,1413,421,1605,73,713,343,1279,461,8186,385,362,817,848,392,607,1035,2180,91,197,69,940,1094,2879,78,4765,32,45,1382,218,700,1962,255,256,8208,88,821,130,178,330,717,244,2605,592,90,557,342,16408,146,269,61,263,107,415,2440,162,278,1361,522,85,700,3102,734,780,465,2389,12410,346,847,5,128,18,104986,4006,"The State of Michigan is working around the clock to test and treat COVID-19 patients. Below is the most recent data healthcare experts across the state have compiled. It is updated Monday - Saturday.
This report is provisional and subject to change. City of Detroit and Wayne County are reported separately. MDHHS began tracking probable cases April 5, 2020. FCI indicates federal correctional institute. MDOC indicates Michigan Department of Corrections. Diagnostic tests, including nucleic acid amplification/real-time polymerase chain reaction (NAAT/RT-PCR) and rapid virus antigen detection point of care (POC) tests, look for current infection. Serology (antibody) tests are used to look for the possibility of previous infection.