What I mean is that records is a fieldname, The value in this field is "Raddison","Hilton","Best Western","La Quinta"
so I want to be able to find the records sequence for all the Radisson's, Hilton.
Thank you lupins46 and Duane. Here is the report sample layout. The record sequence is what I have trouble in getting in the same line starting with number 1 to 15..
RECORD SEQUENCE HOTEL TOTAL PROPERTIES
1 -15 HILTON 15
16-20 RAMADA 4
21-50 SHERATON 29
51-55 HOLIDAY INN 5
56-100 BEST WESTERN 44
ETC......
========
Total 97
Is this your data or your desired display? If it is one or the other, we don't have a clue about the missing information. Is it too hard to respond with the answer to a simple question?
Duane
MS Access MVP
Find out how to get great answers faq219-2884.
So I want to tally by HotelChainame and count them. My question is to get the propertyid is starting and ending for each of the Hotelchainame starting - ending (1-30).
Can you use something like:
SELECT Min(PropertyID) & "-" & Max(PropertyID) as RecordSequence, HotelChainame, Count(HotelChainame) as TotalProperties
FROM tblYourTable
GROUP BY HotelChainName;
Duane
MS Access MVP
Find out how to get great answers faq219-2884.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.