I have a combo box on a form
SELECT [qryTTT Media].Company_ID, [qryTTT Media].CompanyName, [qryTTT Media].Market
FROM [qryTTT Media]
WHERE ((([qryTTT Media].[Bill_ID].[Value])=8))
ORDER BY [qryTTT Media].Market, [qryTTT Media].CompanyName;
The box displays CompanyName and [qryTTTMedia].Market.
I'd like the box to zoom to the first item that is not null in the Market column. I want to keep the Market column as the first sort, but want to get to the first place in the list that actually has a Market in it.
Any ideas?
MIB1019