I am trying select records where only the following condition exists:
The second, third and fourth characters of the ‘ModelNo’ are not found anywhere within the ‘PartNo’.
(Both ‘ModelNo’ and ‘PartNo’ are fields found within each record of the database table used by the report. There is one only database table used by this report.)
I first created a formula called ‘@Model_234’, where:
@Model_234 = (Mid({tbl_ ModelNo},2,3))
I then set up the Selection Criteria using the following formula:
not ({tbl_PartNo} like [*{@Model234}*])
However, this Selection Formula does not filter the records at all.
Any thoughts on how to accomplish this task would be appreciated.
The second, third and fourth characters of the ‘ModelNo’ are not found anywhere within the ‘PartNo’.
(Both ‘ModelNo’ and ‘PartNo’ are fields found within each record of the database table used by the report. There is one only database table used by this report.)
I first created a formula called ‘@Model_234’, where:
@Model_234 = (Mid({tbl_ ModelNo},2,3))
I then set up the Selection Criteria using the following formula:
not ({tbl_PartNo} like [*{@Model234}*])
However, this Selection Formula does not filter the records at all.
Any thoughts on how to accomplish this task would be appreciated.