Wednesday 22 March 2017

MS Access - Fix Error - undefined function 'substring' in expression

Watch this example on YouTube

To fix it replace
Expr1: Substring([Name],1,2)
with

Expr1: Mid([Name],1,2)

No comments:

Post a Comment