Hi Theresa, I've needed to do the same thing. Here's what finally worked: Create a custom form with a calculated field. The calculated field will dictate the order. Here's the formula I have: IF(Status="CUR","1", IF(Status="PLN","2", IF(Status="YAY","3", IF(Status="NBU","4","z")))) Then I added a co...