Hi bal,
There likely is a limit to the length of the formula text that you are hitting.
There is a better way of doing formulas where you want to select specific dockets for the view.
Rather than using OR and a whole list of dockets where each comparison needs TRIM({Docket #}) every time, you can save space by using the FINDANY function and you only need it once:
FINDANY( TRIM({Docket #}) , "31-01","31-02","31-03",...,"32-01")
This will be way shorter than what you have now, meaning you can add more to the list. Do the same for the Disbursement selection, but because you don't want specific codes, surround everything with NOT( ) :
NOT( FINDANY( TRIM({Disbursement}) , "AIR","TAXI",...,"SHIP") )
_________________________
Regards,
Softrak Tech Support