Hide results which are null

vavs

Well-known Member
Joined
Jul 2, 2004
Messages
516
I am writing a report which groups results by Vendor and Evaluator. I am creating a sum and average of all none null responses. If an evaluator has not yet responded, I don't want to display them at all. I have groups based on Vendor, then evaluator. How do I hide the null values on the report? I do not want to see the label or the blank line.
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
In the underlying query use Is Not Null against the field that might contain Null values.

This will exclude any records where that field is Null.
 
Upvote 0
I have not expressed my question well.

Vendor name groups all of the vendor responses. This works fine.
Evaluator name groups all of the evaluators based on the vendor. This also works fine. The only thing I want to do is to not show the evaluator sum and average if there is nothing to show. In other words, give me only sum and average if there is a sum and average that can and was calculated.

I hope this clarifies my question.
 
Upvote 0
Hi Vavs,
Are the fields calculated on the report itself, or are they fieldsin the underlying query?

If they are part of the query, then Norie's solution will be good.
If they are calculated fields then an IF statement should do the trick - something like; IIf([EvaluatorSum] is null, "",[EvaluatorSum])

HTH
 
Upvote 0

Forum statistics

Threads
1,221,814
Messages
6,162,135
Members
451,743
Latest member
matt3388

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top