I have a type called “Address” which contains a geographic address field in addition to a number of other fields.
I have a type called “Listing” which has a field for the aforementioned “Address” type (i.e. Listing->Address->geographic address)
I have a repeating group of type “Listing”.
I would like to sort the listings in the repeating group by distance between some location and the listing. In other words, I want listings that are closer to the location at the top of the repeating group and listings that are further away from the location at the bottom.
Unfortunately, it doesn’t seem like I can sort my “Listings” by the geographic address field of the “Address”.
Any idea what I might do?