Consulting

Results 1 to 4 of 4

Thread: Replace #DIV/0! ERROR as blank cell

  1. #1

    Replace #DIV/0! ERROR as blank cell

    Hello

    I am working an a productivity tracker that records transactions completed on a daily basis, giving a weekly and monthly total. It also calulates daily productivity numbers. On some days, there is no data and the cell remains blank. Unfortunately, this gives me the above error and that affects the monthly total. The spreadsheet is protected and allows data only for transaction completed. Is there a way to work around this without giving access?

    Thanks in advance for any help.
    CosmicSyzygy

  2. #2
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    =IF(ISNUMBER(your_formula),your_formula,"Incomplete data")
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  3. #3
    Quote Originally Posted by xld
    =IF(ISNUMBER(your_formula),your_formula,"Incomplete data")
    Thank you so much for the quick response... My issue has been resolved!

  4. #4
    VBAX Expert
    Joined
    Aug 2007
    Location
    Windermere, FL, a 'burb in the greater Orlando metro area.
    Posts
    567
    Location
    Quote Originally Posted by xld
    =IF(ISNUMBER(your_formula),your_formula,"Incomplete data")
    I usually set the null case to "" and only use a msg like "Incomplete data" when data must be entered in the cell. Besides a 'cleaner' worksheet, this reduces the number of questions from users of the worksheet.

    Ron
    Orlando, FL

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •