So I have a report, and it involves an attribute for recurring deadlines for foundations. Since the attribute description is in the format MM/DD, a fuzzy date wouldn't work for them. I want to sort on the day. I already have a formula that figures out the month and compares it to the date fields from a parameter field, so that's good.
I created this formula and grouped on it:
if numerictext (right ({CnAttrCat_1.CnAttrCat_1_Description}, 2))
then tonumber (right ({CnAttrCat_1.CnAttrCat_1_Description}, 2))
else 0
(I have to use the numerictext function, because a few of the entries in the field are things like 'None' or 'Rolling Deadline' -- I only want to pull out the MM/DD entries)
However, this still won't sort by that field. Anyone have any ideas on what I might do to make it sort?