D
Dale Fye
Joe,
You could write a crosstab query with (Call#, CallDate and Unit#) as the row
headings,
a computed field (see statement below) for the column Header, and the
StatusTime as the Value (you would probably have to set the Total Row of the
query grid to FIRST for this column).
Your computed field would look something like:
Expr1: IIF(StatusType = 41, "AHTime", IIF(StatusType= 33, "ESTime",
"AVTime"))
HTH
Dale
You could write a crosstab query with (Call#, CallDate and Unit#) as the row
headings,
a computed field (see statement below) for the column Header, and the
StatusTime as the Value (you would probably have to set the Total Row of the
query grid to FIRST for this column).
Your computed field would look something like:
Expr1: IIF(StatusType = 41, "AHTime", IIF(StatusType= 33, "ESTime",
"AVTime"))
HTH
Dale