0

Using NOT with Link=

Here’s a basic sort of question from a self-trained, beginning Jet Report learner.

Why does NOT on a FilterField work differently when used in this simple NL as opposed when used in an NL with "Link="?

Simple NL
D5 =NL("Rows","Item Ledger Entry",,"Posting Date","3/15/10","+Source No.","<>DSHE001")
E5 =NF(D5,"Source No.")

This returns an ordered list in Column E of all "Source No." (multiple times, if multiple entries exist) from the "Item Ledger Entry" table with the "Posting Date" of “3/15/2010” EXCEPT for the ones with "Source No." equal to “DSHE001”.

Since I want a list of unique "Source No.", I linked it to the "Vendor" Table, where each "No." is listed only once.

NL using "Link="
D6 =NL("Rows","Vendor",,"Link=","Item Ledger Entry","Source No.","=No.","Posting Date","3/15/2010","Source No.","<>DSHE001")
E6 =NF(D6,"No.")

This returns "No." from the "Vendor" table that match "Source No." from "Item Ledger Entry" table that have been filtered by "Posting Date" "3/15/2010" and NOT equal to "Source No." "DSHE001" (or so I had hoped).

However, "DSHE001" shows up in this Column E alphanumeric Source No.s! Why doesn't the "Source No." "<>DSHE001" eliminate it this time?

3 comments

Please sign in to leave a comment.