Jun 24, 2005 #1 gregmw MIS Jun 11, 2002 23 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 Apr 4, 2000 1,174 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 Jun 11, 2002 23 NZ Thanks that is the function I need to use. Upvote 0 Downvote