Apr 20, 2007 #1 rickdunna Programmer Feb 28, 2007 15 US BO 6.5.1 I need a formula that will do the following: If <Account> = (123%) then "New Account" else if <Account> = (534%) then "Old Account" Basicaly I want to check the first 3 digits and then assign them to a catorgory. Thanks Rick.
BO 6.5.1 I need a formula that will do the following: If <Account> = (123%) then "New Account" else if <Account> = (534%) then "Old Account" Basicaly I want to check the first 3 digits and then assign them to a catorgory. Thanks Rick.
Apr 21, 2007 #2 skrandel MIS Aug 23, 2002 1,378 US Use the Pos function. Read the online help. If Pos(<Account>, "123") = 1 then "New Account" else if Pos(<Account>, "534") = 1 then "Old Account" Steve Krandel Intuit Upvote 0 Downvote
Use the Pos function. Read the online help. If Pos(<Account>, "123") = 1 then "New Account" else if Pos(<Account>, "534") = 1 then "Old Account" Steve Krandel Intuit
Apr 23, 2007 Thread starter #3 rickdunna Programmer Feb 28, 2007 15 US Worked like a champ. Thank you very much! Upvote 0 Downvote