I think this will do what you're after. By verifying the Names of sheets instead of the position, it won't matter how you organize the workbook in the future.
Option Explicit
Sub Search_NotClear()
Dim AL As Long, CL As Long, LT As Long, BH As Long, SL As Long
Dim US As Long, ML As Long, UL As Long, a As Long
Dim ws As Worksheet, Rng As Range
Sheets("Summary").Activate
Set Rng = Range("C8:F68")
'Collect values
For Each ws In Worksheets
ws.Activate
If ws.Name <> "Summary" Then
AL = AL + WorksheetFunction.CountIf(Rng, "A/L")
CL = CL + WorksheetFunction.CountIf(Rng, "C/L")
LT = LT + WorksheetFunction.CountIf(Rng, "L/T")
BH = BH + WorksheetFunction.CountIf(Rng, "B/H")
SL = SL + WorksheetFunction.CountIf(Rng, "S/L")
US = US + WorksheetFunction.CountIf(Rng, "U/S")
ML = ML + WorksheetFunction.CountIf(Rng, "M/L")
UL = UL + WorksheetFunction.CountIf(Rng, "U/L")
a = a + WorksheetFunction.CountIf(Rng, "A")
End If
Next ws
'Insert values into Summary
Sheets("Summary").Activate
Range("A1").Value = AL
Range("A2").Value = CL
Range("A3").Value = LT
Range("A4").Value = BH
Range("A5").Value = SL
Range("A6").Value = US
Range("A7").Value = ML
Range("A8").Value = UL
Range("A9").Value = a
Set Rng = Nothing
End Sub
Bookmarks