G
Guest
All I am trying to do is to change the status of a shipment. I have the
status field set to a look up with 3 values in it. Every time I try to
change a value I get a sound from my speakers and it will not change the
value to the status I just selected?
SELECT tblAlerts.ShipDate, tblAlerts.[Airline Airbill], tblAlerts.CompanyId,
tblAlerts.AirportFrom, tblAlerts.AirportTo, tblAlerts.Airline,
tblAlerts.Pieces, tblAlerts.Weight, tblAlerts.Comments, tblAlerts.Status,
tblAlerts.AlertId
FROM tblAlerts
GROUP BY tblAlerts.ShipDate, tblAlerts.[Airline Airbill],
tblAlerts.CompanyId, tblAlerts.AirportFrom, tblAlerts.AirportTo,
tblAlerts.Airline, tblAlerts.Pieces, tblAlerts.Weight, tblAlerts.Comments,
tblAlerts.Status, tblAlerts.AlertId
HAVING ((Not (tblAlerts.[Airline Airbill]) Is Null) AND
((tblAlerts.CompanyId)<>"410926") AND ((tblAlerts.Status)<>"Recovered"))
ORDER BY tblAlerts.ShipDate DESC , tblAlerts.[Airline Airbill] DESC ,
tblAlerts.AirportTo DESC;
any help would be apppreciated.
status field set to a look up with 3 values in it. Every time I try to
change a value I get a sound from my speakers and it will not change the
value to the status I just selected?
SELECT tblAlerts.ShipDate, tblAlerts.[Airline Airbill], tblAlerts.CompanyId,
tblAlerts.AirportFrom, tblAlerts.AirportTo, tblAlerts.Airline,
tblAlerts.Pieces, tblAlerts.Weight, tblAlerts.Comments, tblAlerts.Status,
tblAlerts.AlertId
FROM tblAlerts
GROUP BY tblAlerts.ShipDate, tblAlerts.[Airline Airbill],
tblAlerts.CompanyId, tblAlerts.AirportFrom, tblAlerts.AirportTo,
tblAlerts.Airline, tblAlerts.Pieces, tblAlerts.Weight, tblAlerts.Comments,
tblAlerts.Status, tblAlerts.AlertId
HAVING ((Not (tblAlerts.[Airline Airbill]) Is Null) AND
((tblAlerts.CompanyId)<>"410926") AND ((tblAlerts.Status)<>"Recovered"))
ORDER BY tblAlerts.ShipDate DESC , tblAlerts.[Airline Airbill] DESC ,
tblAlerts.AirportTo DESC;
any help would be apppreciated.