date range

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dears,

when I pull a report on date range, if there is not info. between these
dates I get a error in a total field, which true b'c there is not data
processed within these dates

how do I get a rid of the message error and replace it with zero or a text
message

thanks and any help will be appreciated
 
Gerald said:
Dears,

when I pull a report on date range, if there is not info. between
these dates I get a error in a total field, which true b'c there is
not data processed within these dates

how do I get a rid of the message error and replace it with zero or a
text message

thanks and any help will be appreciated

Hi Gerald,

just incapsulate your formula into an IF function:

=IF(ISERROR(your_formula),"",your_formula)

with above formula you'll see blank cells replacing errors. If you want
replace errors with zeros, use this way:

=IF(ISERROR(your_formula),0,your_formula)

--
Hope I helped you.

Thanks in advance for your feedback.

Ciao

Franz Verga from Italy
 
thanks (y)

Franz Verga said:
Hi Gerald,

just incapsulate your formula into an IF function:

=IF(ISERROR(your_formula),"",your_formula)

with above formula you'll see blank cells replacing errors. If you want
replace errors with zeros, use this way:

=IF(ISERROR(your_formula),0,your_formula)

--
Hope I helped you.

Thanks in advance for your feedback.

Ciao

Franz Verga from Italy
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top