A field cannot have two values in the same row, so I'm guessing you are really talking about including some GROUP where there is a row with the field = one value but no row containing some other value. Why not show some sample data that illustrates what you want to do?
If you want {Example} to equal something, then is there a reason you need it to not equal something at the same time? Meaning if you use an if/then statement, when you set {Example} equal to something, the 'then' part of the statement will only happen when the first part is satisfied. You wouldn't need a 'does not equal' part to do this.
As lbass said though, example data would help us help you.
Thanks for all your responses. Here's an example of what i am trying to do.
My report shows all clients and different date types input for each client. There are 3 date types, ARD, IRD and LMD.I only want the report to show ARD & IRD dates.
All clients should have a date type of "ARD", so I need to see any clients that do not have an "ARD" type input. I cannot say "is null {date.type} as the client might also have date types of "LMD" or "IRD" and therefore wouldn't be blank.
I want to do something like this:
{DDATE.DDATE} = "LMD" or
{DDATE.DDATE} = "IRD" but
{DDATE.DDATE} <> "ARD"
You need to allow all datetypes into the report (no record selection), and then insert a group on {table.client} and then create a formula in the field explorer->formula->new:
//{@hasARD}:
if {DDATE.DDATE} = "ARD" then 1
Then go to report->selection formula->GROUP and enter:
sum({@hasARD},{table.client}) = 0
Only clients without ARD will be displayed, regardless of other dates they may have.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.