Access query function InStr, optional arguments now required?
For example, "select t.ID, t.Field1, Instr(t.Field1, "test") as Expr1 from Table1 as t". This does not work after the recent updates. Now I must rewrite the query as "select t.ID, t.Field1, Instr(1, t.Field1, "test", 1) as Expr1 from Table1 as t". The first argument is supposed to be optional and defaults to 1, but omitting it causes the application to crash. The last argument is also optional and defaults to the Option Compare setting, but omitting it causes an error. Note that this behavior is only for queries. VBA functions continue to work as documented.