Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Wildcard Formula

Status
Not open for further replies.

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.
 
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top