+ Reply to Thread
Results 1 to 5 of 5

indication of empty cell

  1. #1
    haf
    Guest

    indication of empty cell

    i have rows where i have had put "+"
    i want to set some kind of indicator if in that row is less then 3 empty
    cells

    help

    --
    pobrisi velika slova iz mejla i sve bu okej
    http://hafomatic.blog.hr/
    http://www.brunkovac.com/



  2. #2
    Jason Morin
    Guest

    Re: indication of empty cell

    =IF(A1="+",COUNTBLANK(1:1)<3)

    HTH
    Jason
    Atlanta, GA

    >-----Original Message-----
    >i have rows where i have had put "+"
    >i want to set some kind of indicator if in that row is

    less then 3 empty
    >cells
    >
    >help
    >
    >--
    >pobrisi velika slova iz mejla i sve bu okej
    >http://hafomatic.blog.hr/
    >http://www.brunkovac.com/
    >
    >
    >.
    >


  3. #3
    haf
    Guest

    Re: indication of empty cell

    i've tried like this
    =IF((D5:H5;K5:N5)="+",COUNTBLANK(1:1)<3)

    but doesn't work

    "Jason Morin" <[email protected]> wrote in message
    news:[email protected]...
    > =IF(A1="+",COUNTBLANK(1:1)<3)
    >
    > HTH
    > Jason
    > Atlanta, GA
    >
    >>-----Original Message-----
    >>i have rows where i have had put "+"
    >>i want to set some kind of indicator if in that row is

    > less then 3 empty
    >>cells
    >>
    >>help
    >>
    >>--
    >>pobrisi velika slova iz mejla i sve bu okej
    >>http://hafomatic.blog.hr/
    >>http://www.brunkovac.com/
    >>
    >>
    >>.
    >>




  4. #4
    GerryK
    Guest

    Re: indication of empty cell

    Could you not simply use COUNTBLANK(1:1) and conditionally
    format the cell containing the formula to red fill and red
    text; based on 255 cells in a row and your requirement of
    the row being less than 3 empty cells?

    >-----Original Message-----
    >i've tried like this
    >=IF((D5:H5;K5:N5)="+",COUNTBLANK(1:1)<3)
    >
    >but doesn't work
    >
    >"Jason Morin" <[email protected]> wrote

    in message
    >news:[email protected]...
    >> =IF(A1="+",COUNTBLANK(1:1)<3)
    >>
    >> HTH
    >> Jason
    >> Atlanta, GA
    >>
    >>>-----Original Message-----
    >>>i have rows where i have had put "+"
    >>>i want to set some kind of indicator if in that row is

    >> less then 3 empty
    >>>cells
    >>>
    >>>help
    >>>
    >>>--
    >>>pobrisi velika slova iz mejla i sve bu okej
    >>>http://hafomatic.blog.hr/
    >>>http://www.brunkovac.com/
    >>>
    >>>
    >>>.
    >>>

    >
    >
    >.
    >


  5. #5

    Re: indication of empty cell

    haf wrote...
    >i've tried like this
    >=IF((D5:H5;K5:N5)="+",COUNTBLANK(1:1)<3)
    >
    >but doesn't work

    ....

    (D5:H5;K5:N5)="+" is a syntax error. Do you mean

    OR(D5:H5="+",K5:N5="+")

    ? If so, you'd need to enter the formula

    =IF(OR(D5:H5="+",K5:N5="+"),COUNTBLANK(1:1)<3)

    as an array formula. Alternatively, you could use the following, longer
    non-array formula.
    =IF(COUNTIF(D5:H5,"+")+COUNTIF(K5:N5="+"),COUNTBLANK(1:1)<3)


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1