CR # 8.5
I have a list of items that need to be printed out on various reports. We used to only have US items, but now we have International items as well. I am using a Report with many Sub-reports.
My old sub-reports should now only show US items. At the end of the old report is a new sub-report that should only show International items.
US item numbers begin with an alphanumeric character. International Item Numbers begin with their two-character alpha country code. There are 50 of those codes which I can put into an array.
I want to add this new criteria into the Record Selection Formula (i.e. UpperCase(Left({dataTable.[ItemNumber]}, 2)) not in ["AU", "CA", "CH", "CN", "DE", etc]). But this does not work.
Any idea what I'm doing wrong?
I have a list of items that need to be printed out on various reports. We used to only have US items, but now we have International items as well. I am using a Report with many Sub-reports.
My old sub-reports should now only show US items. At the end of the old report is a new sub-report that should only show International items.
US item numbers begin with an alphanumeric character. International Item Numbers begin with their two-character alpha country code. There are 50 of those codes which I can put into an array.
I want to add this new criteria into the Record Selection Formula (i.e. UpperCase(Left({dataTable.[ItemNumber]}, 2)) not in ["AU", "CA", "CH", "CN", "DE", etc]). But this does not work.
Any idea what I'm doing wrong?