Hello all,
I'm a newbie to jet reporting although I have done some reporting using Crystal Reports and SSRS over the years.
I need to filter based on the last 2 characters of a string. We flag something as obsolete by appending XX to the name or description. I want to create a Jet Report to list obsolete items. So my filter needs to be the Excel equivalent of Right(Trim(field), 2).
Any ideas or suggestions would be welcomed.
Date
Votes
2 comments
-
Jet Reports Historic Posts Hi -
Yes, that can be done with a function similar to this:=NL("Rows","Item","No.","=Right(NF(,""Description""),2)","XX") -
Jet Reports Historic Posts I've learned since that I could have just filtered on "Description", "*XX" to get everything ending in XX.
Please sign in to leave a comment.