April 28, 200322 yr Hi All, I have a text field ... 270123 ..when I convert to number using texttonum then I got 27123. Because I would like to get next number of it by increasing 1 then I would like to have 270124 ...Is there a way to get from text to number by having 270123 instead of 27123 ? Thanks
April 28, 200322 yr Author What I mean by this is when in text ... 0123 ..when converting to number is 123 ...is there a way to convert as it 0123 as a number? Thanks
April 28, 200322 yr Numbers can't have leading zeros. But you can do this: TextToNum(27 & 0 & 123) ... or: TextToNum(field1 & 0 & field2) Does that help?
April 28, 200322 yr it seems a simple typo here. TexttoNum(270123)=270123 TexttoNum(27O1213)=27123 8That's an "O" like in "One"
April 28, 200322 yr "TexttoNum(27O1213)=27123 8That's an "O" like in "One"" I think you figured it out, as the poster didn't mention two fields. There might be a 2 typos in you answer though. Lee
Create an account or sign in to comment