This code:
filter([tbl_ProvJenny_AppGoalSetting].MerticTypeLkup=1002)
Is invalid syntax because a keyword argument can't look like [tbl_ProvJenny_AppGoalSetting].MerticTypeLkup
- only names are allowed, like:
filter(some_name=6)
Did you mean to use a comma instead of the dot?
filter([tbl_ProvJenny_AppGoalSetting], MerticTypeLkup=1002)
now you're passing two arguments ^^^^
If you intended to set [tbl_ProvJenny_AppGoalSetting].MerticTypeLkup
to 1002 and pass that to the function, do that:
[tbl_ProvJenny_AppGoalSetting].MerticTypeLkup = 1002
filter([tbl_ProvJenny_AppGoalSetting].MerticTypeLkup)
Actually, I think this error message is very misleading because "keyword" usually means "keyword of the language", like def
, return
and if
, not "keyword argument", as in this case.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…