Hi,
The first thing to do is add a helper column, say J and put the following formula in J2 and copy it down all your data rows.
=IF($C2="","",IF(AND(HOUR($B2)>=7,HOUR($B2)<19),"A","B"))
It's not clear exactly how you wish to operate the macro. Whether you want the macro to identify each range separately and sort each one or whether you want the macro to sort depending on where you have positioned the active cell. I've assumed the latter at the moment. In which case just select any of the data cells and run the following macro
Sub SortData()
ActiveCell.CurrentRegion.Sort Key1:=Range("J:J"), Order1:=xlAscending, Header:=xlGuess, OrderCustom:=1
End Sub
If you need the macro to select the various ranges and then sort them, let me know how many ranges there are likely to be, and whether they are consistently laid out. i.e. Is there always one blank row above and below the total row, and always one blank row above the data apart from the Town Name in column A. It will need a looping macro to work out where to jump to before doing the sort. Alternatively if all the ranges are named then the names themselves could be built into the macro.
HTH
Bookmarks