I am trying to create rollup summaries in a large worksheet. For a couple of metrics I need I need to include or eclude certain things based on if a cell is blank or populated.
For example - I need to count something for a processor if the Auditor fields is blank. The formula below is working 
=COUNTIFS(Risk:Risk, SSO4, Processor:Processor, SSO3, [RHB TO AUDITOR]:[RHB TO AUDITOR], "")
Next I need to count the same row for an Auditor if the Audiotr field is NOT blank.
Currently this is my formula - =COUNTIFS(Risk:Risk, SSO8, Auditor:Auditor, SSO$3)
but I need to add the additional criteria. I have tried this:
=COUNTIFS(Risk:Risk, SSO8, Auditor:Auditor, SSO$3, [RHB TO AUDITOR]:[RHB TO AUDITOR], "<>")
It is not working. Anyone know how I can get it to work?