Jun 24, 2005 #1 gregmw MIS Joined Jun 11, 2002 Messages 23 Location NZ I am having trouble converting a simple expression in excel to access. The formula in excel is =(LEFT(J25,FIND("|",J25)-1)) in access do you know what the equivalent FIND function is? Thanks Greg
I am having trouble converting a simple expression in excel to access. The formula in excel is =(LEFT(J25,FIND("|",J25)-1)) in access do you know what the equivalent FIND function is? Thanks Greg
Jun 24, 2005 1 #2 gol4 Technical User Joined Apr 4, 2000 Messages 1,174 Location US Perhaps Instr()is what you are looking for left("text",instr("text","|")-1) Upvote 0 Downvote
Jun 24, 2005 Thread starter #3 gregmw MIS Joined Jun 11, 2002 Messages 23 Location NZ Thanks that is the function I need to use. Upvote 0 Downvote