My database contains the following strings along with others that are similar
Old Type: New Type: IRP User: dls0835
Old Type: BASE PLATE New Type: IRP User: ter2344
I am trying to not return the first string type but to still return the second string type.
Notice how there is no text after the "Old Type:" in the first string and that there is actually 2 spaces between that and the "New Type" word.
In the second string it has text after "Old Type:" but this text changes according to what the user picks.
Also the "New Type" and "User" can change as well.
I am trying to not Return any of the records where the "Old Type:" does not have any text after it.
I tried the following:
n.[text] NOT LIKE 'Old Type: New Type: %'
This still returns the blank ones for some reason. I think it may have to due with there being two spaces between Old Type and New Type when Old Type is blank????
Thanks!