How can I enter a long If command in Suprtool? A Suprtool command line cannot exceed 256 characters. You can reach this limit if you try to stack all your task commands into a single entity. base ...;get ...;sort ...; & extract ...; duplicate ...; if ...; & output ...;xeq The only solution in this situation is to put individual commands on separate lines. Then you can control the length of each command. If you are not stacking commands, you may also run into this problem if you use a long and complex If command. In that case, there are different ways to get around the problem. If your command is complex and you are using long item names, you can assign shorter names by using Define statements. Then you can refer to the same item by using the short or long form. define low,re-order-quantity define curqty,on-hand-quantity At the expense of readability, you can also remove unnecessary spaces. For example, you can use if curqtyget m-supplier >if $read {prompt for the expression} -cust-status = "20" and {$READ prompts with "-"} -state = "AZ", {the comma is still needed} - "OR" {no comma on the last line} - {blank line to terminate $READ}