It's not weird at all. Step through the NOT IN select statement:
FOR EACH record
IF
the software name contains "Adobe Acrobat"
AND the software name contains "Adobe Photoshop"
THEN
include the record
ELSE
exclude the record
END
If it processes a record that matches Acrobat, it won't also match Photoshop, so the record is excluded from the result set. Likewise if it matches Photoshop, it won't match Acrobat.
By changing the AND to an OR,
FOR EACH record
IF
the software name contains "Adobe Acrobat"
OR the software name contains "Adobe Photoshop"
THEN
include the record
ELSE
exclude the record
END
In this case if the software contains EITHER Acrobat OR Photoshop, it's included in the result set.
Hopefully that helps shed a little light on why the change worked.