Recent content by Rainman

  1. R

    Help with IIf and is null

    Peter 1. Bill 1. Etc Peter Bill Etc If Peter then (is null), (no change). If bill then (is null), (no change)
  2. R

    Help with IIf and is null

    The combo is in a form. Uniform I use just is null in just one of the columns I get the correct result but the name is variable so I only want the column which relates to the name to show is null results. Really I just want to know how to write an iif statement using is null if true.
  3. R

    Help with IIf and is null

    I select the name from a combo box then the query shows me which values are null against the name.
  4. R

    Help with IIf and is null

    I just want to show null results in a column which matches up with a name. Column 1 data belongs to Peter, column 2 bill etc. So if Peter is selected I only see null values for him.
  5. R

    Help with IIf and is null

    Thanks, but I just tried to simplify the example. I really want a number of columns I can filter using the criteria. Ie if it's Peter then see all the null results in column 1. If its bill then see all the null results in column 2 etc. Under each column in the criteria I wanted to write an iif...
  6. R

    Help with IIf and is null

    Hi, I'm sure this is straight forward but can't seem to solve it. I am trying to create in the query a criteria to say IIf [a condition is true] then return IS NULL, if false then do nothing. I tried this but it doesn't work IIf([Test]![Name]="Peter",Is Null,) Can anyone help ? Thanks...
Back
Top Bottom