Ok. Code is below. Choice column 'Tire Condition' accepts single value. But few fields accept multiple values
ClearCollect(
ColInspectionData,
'DailyForklift/OrderPickerInspectionReport'
);
ClearCollect(
ColOkCounts,
{
TireCondition: CountIf(ColInspectionData, TireCondition.Value = "Ok"),
HeadLights: CountIf(ColInspectionData, HeadLights.Value = "Ok"),
WarmingLights: CountIf(ColInspectionData, 'Warming Lights'.Value = "Ok"),
HourMeter: CountIf(ColInspectionData, 'Hour Meter'.Value = "Ok"),
Horn: CountIf(ColInspectionData, Horn.Value = "Ok"),
AnyLeaks: CountIf(ColInspectionData, 'Any Leaks'.Value = "Ok"),
Steering: CountIf(ColInspectionData, Steering.Value = "Ok"),
ServiceBrake: CountIf(ColInspectionData, 'Service Brake'.Value = "Ok"),
ParkingBrake: CountIf(ColInspectionData, 'Parking Brake'.Value = "Ok"),
MastCondition: CountIf(ColInspectionData, 'Mast Condition'.Value = "Ok")
}
);