Hi,
I have a situation, in reports I want a summary to count the total working days of each vehicle type.
Here is what I want.
By using following expression:
I get :
This returns the vehicle types, that are presented in the report.
Is there a way by which I can get the total "working days" of each vehicle type.
Thanks...
I have a situation, in reports I want a summary to count the total working days of each vehicle type.
Here is what I want.
Code:
[U]VehicleType VehicleNumber Days[/U]
H. Truck GA 3434 2
F.B. TRL AS 3222 7
F.B. TRL HY 34324 1
L.B. TRL DD 3434 2
Summary:
H.Truck = 2
F.B. TRL = 8
L.B. TRL = 2
By using following expression:
Code:
=Sum(IIf(VehicleType= " H.Truck ", 1, 0))
=Sum(IIf(VehicleType= " F.B. TRL ", 1, 0))
=Sum(IIf(VehicleType= " L.B. TRL ", 1, 0))
Code:
Summary:
H.Truck = 1
F.B. TRL = 2
L.B. TRL = 1
Is there a way by which I can get the total "working days" of each vehicle type.
Thanks...