Hi all,
I have a statement (that dhookom helped me with) in a query that i use in access that i need to use in SQL the statement is:
i get an error that says Instr() is not a defined function, can someone help me rewrite this so that i can use it in SQL?
Also i would like to write a simular statement to return the characters in a text field up to the "A-" value so that if i have:
abc A-123
the first statement retruns 123 in a field and the second returns abc. thanks in advance!
I have a statement (that dhookom helped me with) in a query that i use in access that i need to use in SQL the statement is:
Code:
Mid([Unnamed Field], Instr([Unnamed Field],"A-")+2)
i get an error that says Instr() is not a defined function, can someone help me rewrite this so that i can use it in SQL?
Also i would like to write a simular statement to return the characters in a text field up to the "A-" value so that if i have:
abc A-123
the first statement retruns 123 in a field and the second returns abc. thanks in advance!