July 9, 200322 yr I have a global field gEvergentAccountInfoText containing a text block with multiple lines like the following: account.number: 9999 account.name: Smith Bakers address.streetNum: 15 address.streetName: Adams address.streetSuffix: RD address.city: Fairfield address.state: IA address.zipCode: 50219 phoneNumber.npa: phoneNumber.callingNumber: I am trying to parse the individual elements using the position function. I am getting confusing results. For example: Position ( "account.name", gEvergentAccountInfoText , 1, 1) returns 0 Position ( "address.streetNum", gEvergentAccountInfoText , 1, 1) also returns 0 What am I doing wrong?
July 9, 200322 yr If you're actually doing what you typed, you have the first 2 arguments reversed. The global field is first, followed by the string you're searching for. Steve
Create an account or sign in to comment