Hi,
I have the following string of transaction data in this cell under column name Details
| Cust: ABC :Cust /TrnTypN: Internal Invoice :TrnTypN /Trns#: 1832942 :Trns# /BGC: :BGC /DSeq#: :DSeq# /BatN: PA Internal Invoices :BatN /Proj#: 52136849 :Proj# /Rec_OU: ABCDF :Rec_OU /CCProj#: 55123698 :CCProj# |
I need to find the Transaction#, in this case it is 1832942.
My method is: Right(left([Details],FindString("Trns#: ",[Details])+13),7)
However, I am getting the wrong result even thought on my excel worksheet will find the current number. Not sure what I did wrong there...
Please help!