Thanks
Try:
=IIf(IsError([EyNumber]), "No Data", Count([EyNumber])
Clifford Bass
--
Message posted via http://www.accessmonster.com
Hmmm.... I presume you added the missing paranthesis that I missed at
the end. Try this instead:
=IIf(IsError(Count(*)), "No Data", Count(*))
Clifford Bass
Nigel wrote:
>Hi Clifford
>
>I tried inputting your suggestion into the unbound box but when I get a
>record with no data I still get thge #Error message.
--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/Forums.aspx/access-reports/201001/1
No, that didn't work either. But, I've managed to find a solution:
IIf([HasData],Count(*),"No Data")
Many thanks for your replies and help.
Nigel
> .
>
Glad I was able to help. The HasData is not something I have used in
the past. Good to know about it! Thanks for posting your solution!
Clifford Bass
Nigel wrote:
>Hi Clifford
>
>No, that didn't work either. But, I've managed to find a solution:
>
>IIf([HasData],Count(*),"No Data")
>
>Many thanks for your replies and help.
>
>Nigel
--