I have a field that includes "DR" in front of the data. I'm trying to build an update query to remove the DR from data. Here is what I have tried:
Left$([account],InStr(1,[Account],"DR")-1)
Left([account],7)
Both gave me a compile error.
What am I doing wrong?
Thanks in advance for any help that you can provide me.
Left$([account],InStr(1,[Account],"DR")-1)
Left([account],7)
Both gave me a compile error.
What am I doing wrong?
Thanks in advance for any help that you can provide me.