Within the Smart Search Results webpart, for the "search sort" property, is there an easy way to sort a column value ascending, but have the empty values last?
When you sort a column ascending, you'll have the empty values first.
Do something like this:
ORDER BY CASE WHEN LEN(YourField) > 0 THEN 0 ELSE 1 END, YourField
Please, sign in to be able to submit a new answer.