In Power Query, I have a column of date values that I want to sort ascending. In some cases, I have null values. I want null to be last, but Order.Ascending results in null values being at the top. Is there any good way to change this behavior? The only thing I can think of is to replace null with #date(9999,1,1), sort the column, then replace #date(9999,1,1) with null. If possible to avoid these steps, I’d like to.