Mar 2, 2004 #1 bhfmc IS-IT--Management Jun 18, 2003 29 US This formula field, Seq Number: If IsNull ({SEQ_NO}) then "n" else If {SEQ_NO} = 1 then "-" else ToText ({SEQ_NO}) returns a "2.00" if the value of {SEQ_NO} is "2". How can I alter this to return the integer format of "2"?
This formula field, Seq Number: If IsNull ({SEQ_NO}) then "n" else If {SEQ_NO} = 1 then "-" else ToText ({SEQ_NO}) returns a "2.00" if the value of {SEQ_NO} is "2". How can I alter this to return the integer format of "2"?
Mar 2, 2004 1 #2 synapsevampire Programmer Mar 23, 2002 20,180 US try: If IsNull ({SEQ_NO}) then "n" else If {SEQ_NO} = 1 then "-" else ToText ({SEQ_NO},0,"") -k Upvote 0 Downvote