robmason10
Technical User
I am trying to create selection critiea where the matter number can = parameter input (if parameter = 0 then all are selected) OR (and this I think is the key) department = dept parameter (though again if ALL is entered I was it to select all entries. The syntax I have so far is below but doesn't seem to work (it ALWAYS asks for a matter number so I need to make it non mandatory?)
Any help appreciated!
if {?Matter number} = 0 then true else {tblMatter.ubintMatterID} = {?Matter number} or
If {tblEntityDepartment.strName} = "All" then true else {tblEntityDepartment.strName} = {?Department}
Any help appreciated!
if {?Matter number} = 0 then true else {tblMatter.ubintMatterID} = {?Matter number} or
If {tblEntityDepartment.strName} = "All" then true else {tblEntityDepartment.strName} = {?Department}