Apr 19, 2006 #1 maduko IS-IT--Management Mar 24, 2003 43 US Trying to pull the numbers from a field that has these type of values..... X999 Z12 XY512 Y21445 Z7 I know it requires something along the lines of this but I can't get it correct: ID: Right([MemberID],IIf(IsNumeric(Mid([MemberID],2,1)),1,6))
Trying to pull the numbers from a field that has these type of values..... X999 Z12 XY512 Y21445 Z7 I know it requires something along the lines of this but I can't get it correct: ID: Right([MemberID],IIf(IsNumeric(Mid([MemberID],2,1)),1,6))
Apr 19, 2006 1 #2 PHV MIS Nov 8, 2002 53,708 FR Perhaps this ? ID: Mid([MemberID],IIf(IsNumeric(Mid([MemberID],2,1)),2,3)) Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886 Upvote 0 Downvote
Perhaps this ? ID: Mid([MemberID],IIf(IsNumeric(Mid([MemberID],2,1)),2,3)) Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
Apr 19, 2006 Thread starter #3 maduko IS-IT--Management Mar 24, 2003 43 US Bravo! Thank you very much. Upvote 0 Downvote