How can I set a calculated text box so it won't show 0?

kelsita_05

Registered User.
Local time
Today, 04:38
Joined
Aug 23, 2005
Messages
52
Ok, so I'm pretty new at this stuff, and while I'm sort of familiar with VB, I feel like there should be a fairly simple expression that could solve my problem. I have a calculated text box that is based on what is entered in another text box, like so:

the source number is in a field called Word Count.
my calculated box's Control Source is =([Word Count]/250).

My goal is to automatically calculate the number of pages based on the number of words per page (250). I used Format so the bank rounding problem doesn't effect the outcome, but if the Word Count field is less than 125 the number of pages is 0. which is obviously not the case.
I've tried fiddling around with the rounding, but then it starts rounding higher word counts up too soon.

thoughts, please?
 
Control Source is =IIf([Word Count]/250 < 1, 1, [Word Count]/250)
 

Users who are viewing this thread

Back
Top Bottom