Consulting

Results 1 to 4 of 4

Thread: Solved: Blank cells

  1. #1

    Solved: Blank cells

    I have the attached excel sheet that works great with the exception I wish the cells under count to be blank until number code is entered. Any way to accomplish this? The count in red is repeated to the last cell.

  2. #2
    VBAX Mentor MaximS's Avatar
    Joined
    Sep 2008
    Location
    Stoke-On-Trent
    Posts
    360
    Location
    try that in column H5 and copy down:

    =IF(OR(H4="",E5=""),"",SUM(H4,G5))

  3. #3
    Moderator VBAX Master georgiboy's Avatar
    Joined
    Mar 2008
    Location
    Kent, England
    Posts
    1,198
    Location
    For range "H5" and drag down...

    =IF(E5<>"",SUM(H4,G5),"")

    Hope this helps
    Click here for a guide on how to add code tags
    Click here for a guide on how to mark a thread as solved
    Click here for a guide on how to upload a file with your post

    Excel 365, Version 2403, Build 17425.20146

  4. #4
    Thanks codes works well.

Posting Permissions

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