+ Reply to Thread
Results 1 to 43 of 43

To Leave Cell blank Please

  1. #1
    Biff
    Guest

    Re: To Leave Cell blank Please

    Just be aware that just because you don't see a zero in that cell there is
    one!

    So, if say, you wanted to then average values in a range that carried that
    format, the unseen zeros could cause a problem!

    Biff

    "Steved" <[email protected]> wrote in message
    news:[email protected]...
    > Hello Domenic from Steved
    >
    > Domenic thankyou, Thius is a much better solution because you have a much
    > clearner formula.
    >
    > Great Stuff
    >
    > Thanks again for your thoughtfulness.
    >
    > "Domenic" wrote:
    >
    >> You can also custom format your cell...
    >>
    >> Format > Cells > Number > Custom > Type: 0;-0;;@
    >>
    >> Hope this helps!
    >>
    >> In article <[email protected]>,
    >> Steved <[email protected]> wrote:
    >>
    >> > Hello from Steved
    >> >
    >> > If no Data the cell is returning a 0 value I need it in this case to be
    >> > blank please.
    >> >
    >> > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    >> > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >> >
    >> > Thankyou.

    >>




  2. #2
    Steved
    Guest

    Re: To Leave Cell blank Please

    Hello Domenic from Steved

    Domenic thankyou, Thius is a much better solution because you have a much
    clearner formula.

    Great Stuff

    Thanks again for your thoughtfulness.

    "Domenic" wrote:

    > You can also custom format your cell...
    >
    > Format > Cells > Number > Custom > Type: 0;-0;;@
    >
    > Hope this helps!
    >
    > In article <[email protected]>,
    > Steved <[email protected]> wrote:
    >
    > > Hello from Steved
    > >
    > > If no Data the cell is returning a 0 value I need it in this case to be
    > > blank please.
    > >
    > > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    > >
    > > Thankyou.

    >


  3. #3
    Domenic
    Guest

    Re: To Leave Cell blank Please

    I like it too, but I have to keep referring to the help file to make
    sure I've got it right.

    In article <[email protected]>,
    "Biff" <[email protected]> wrote:

    > Nice!
    >
    > I don't think I've ever seen that one!
    >
    > That's going into my stash.
    >
    > Biff
    >
    > "Domenic" <[email protected]> wrote in message
    > news:[email protected]...
    > > You can also custom format your cell...
    > >
    > > Format > Cells > Number > Custom > Type: 0;-0;;@
    > >
    > > Hope this helps!
    > >
    > > In article <[email protected]>,
    > > Steved <[email protected]> wrote:
    > >
    > >> Hello from Steved
    > >>
    > >> If no Data the cell is returning a 0 value I need it in this case to be
    > >> blank please.
    > >>
    > >> SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > >> Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    > >>
    > >> Thankyou.


  4. #4
    Biff
    Guest

    Re: To Leave Cell blank Please

    Hi!

    Sometimes it's more efficient to use conditional formatting to "hide"
    unwanted returns!

    Instead of using an array SUM(IF, use this:

    =IF(SUMPRODUCT(--('From Charters'!$A$1:$A$900="Roskill"),--('From
    Charters'!$B$1:$B$900="Period.1"),'From
    Charters'!$D$1:$D$900)=0,"",SUMPRODUCT(--('From
    Charters'!$A$1:$A$900="Roskill"),--('From
    Charters'!$B$1:$B$900="Period.1"),'From Charters'!$D$1:$D$900))

    If your wb is large with lots of these types of formulas consider this:

    This formula takes twice as long to calculate and uses relatively large
    arrays.

    Biff

    "Steved" <[email protected]> wrote in message
    news:[email protected]...
    > Hello from Steved
    >
    > If no Data the cell is returning a 0 value I need it in this case to be
    > blank please.
    >
    > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >
    > Thankyou.




  5. #5
    Steved
    Guest

    Re: To Leave Cell blank Please

    Hello Biff from Steved

    Thankyou and yes I've taken on board your comment about large Worksheet
    but in this case it is a small one

    Thankyou.

    "Biff" wrote:

    > Hi!
    >
    > Sometimes it's more efficient to use conditional formatting to "hide"
    > unwanted returns!
    >
    > Instead of using an array SUM(IF, use this:
    >
    > =IF(SUMPRODUCT(--('From Charters'!$A$1:$A$900="Roskill"),--('From
    > Charters'!$B$1:$B$900="Period.1"),'From
    > Charters'!$D$1:$D$900)=0,"",SUMPRODUCT(--('From
    > Charters'!$A$1:$A$900="Roskill"),--('From
    > Charters'!$B$1:$B$900="Period.1"),'From Charters'!$D$1:$D$900))
    >
    > If your wb is large with lots of these types of formulas consider this:
    >
    > This formula takes twice as long to calculate and uses relatively large
    > arrays.
    >
    > Biff
    >
    > "Steved" <[email protected]> wrote in message
    > news:[email protected]...
    > > Hello from Steved
    > >
    > > If no Data the cell is returning a 0 value I need it in this case to be
    > > blank please.
    > >
    > > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    > >
    > > Thankyou.

    >
    >
    >


  6. #6
    Biff
    Guest

    Re: To Leave Cell blank Please

    Nice!

    I don't think I've ever seen that one!

    That's going into my stash.

    Biff

    "Domenic" <[email protected]> wrote in message
    news:[email protected]...
    > You can also custom format your cell...
    >
    > Format > Cells > Number > Custom > Type: 0;-0;;@
    >
    > Hope this helps!
    >
    > In article <[email protected]>,
    > Steved <[email protected]> wrote:
    >
    >> Hello from Steved
    >>
    >> If no Data the cell is returning a 0 value I need it in this case to be
    >> blank please.
    >>
    >> SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    >> Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >>
    >> Thankyou.




  7. #7
    Domenic
    Guest

    Re: To Leave Cell blank Please

    You can also custom format your cell...

    Format > Cells > Number > Custom > Type: 0;-0;;@

    Hope this helps!

    In article <[email protected]>,
    Steved <[email protected]> wrote:

    > Hello from Steved
    >
    > If no Data the cell is returning a 0 value I need it in this case to be
    > blank please.
    >
    > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >
    > Thankyou.


  8. #8
    Biff
    Guest

    Re: To Leave Cell blank Please

    Nice!

    I don't think I've ever seen that one!

    That's going into my stash.

    Biff

    "Domenic" <[email protected]> wrote in message
    news:[email protected]...
    > You can also custom format your cell...
    >
    > Format > Cells > Number > Custom > Type: 0;-0;;@
    >
    > Hope this helps!
    >
    > In article <[email protected]>,
    > Steved <[email protected]> wrote:
    >
    >> Hello from Steved
    >>
    >> If no Data the cell is returning a 0 value I need it in this case to be
    >> blank please.
    >>
    >> SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    >> Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >>
    >> Thankyou.




  9. #9
    Biff
    Guest

    Re: To Leave Cell blank Please

    Just be aware that just because you don't see a zero in that cell there is
    one!

    So, if say, you wanted to then average values in a range that carried that
    format, the unseen zeros could cause a problem!

    Biff

    "Steved" <[email protected]> wrote in message
    news:[email protected]...
    > Hello Domenic from Steved
    >
    > Domenic thankyou, Thius is a much better solution because you have a much
    > clearner formula.
    >
    > Great Stuff
    >
    > Thanks again for your thoughtfulness.
    >
    > "Domenic" wrote:
    >
    >> You can also custom format your cell...
    >>
    >> Format > Cells > Number > Custom > Type: 0;-0;;@
    >>
    >> Hope this helps!
    >>
    >> In article <[email protected]>,
    >> Steved <[email protected]> wrote:
    >>
    >> > Hello from Steved
    >> >
    >> > If no Data the cell is returning a 0 value I need it in this case to be
    >> > blank please.
    >> >
    >> > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    >> > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >> >
    >> > Thankyou.

    >>




  10. #10
    Steved
    Guest

    Re: To Leave Cell blank Please

    Hello Domenic from Steved

    Domenic thankyou, Thius is a much better solution because you have a much
    clearner formula.

    Great Stuff

    Thanks again for your thoughtfulness.

    "Domenic" wrote:

    > You can also custom format your cell...
    >
    > Format > Cells > Number > Custom > Type: 0;-0;;@
    >
    > Hope this helps!
    >
    > In article <[email protected]>,
    > Steved <[email protected]> wrote:
    >
    > > Hello from Steved
    > >
    > > If no Data the cell is returning a 0 value I need it in this case to be
    > > blank please.
    > >
    > > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    > >
    > > Thankyou.

    >


  11. #11
    Domenic
    Guest

    Re: To Leave Cell blank Please

    I like it too, but I have to keep referring to the help file to make
    sure I've got it right.

    In article <[email protected]>,
    "Biff" <[email protected]> wrote:

    > Nice!
    >
    > I don't think I've ever seen that one!
    >
    > That's going into my stash.
    >
    > Biff
    >
    > "Domenic" <[email protected]> wrote in message
    > news:[email protected]...
    > > You can also custom format your cell...
    > >
    > > Format > Cells > Number > Custom > Type: 0;-0;;@
    > >
    > > Hope this helps!
    > >
    > > In article <[email protected]>,
    > > Steved <[email protected]> wrote:
    > >
    > >> Hello from Steved
    > >>
    > >> If no Data the cell is returning a 0 value I need it in this case to be
    > >> blank please.
    > >>
    > >> SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > >> Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    > >>
    > >> Thankyou.


  12. #12
    Domenic
    Guest

    Re: To Leave Cell blank Please

    You can also custom format your cell...

    Format > Cells > Number > Custom > Type: 0;-0;;@

    Hope this helps!

    In article <[email protected]>,
    Steved <[email protected]> wrote:

    > Hello from Steved
    >
    > If no Data the cell is returning a 0 value I need it in this case to be
    > blank please.
    >
    > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >
    > Thankyou.


  13. #13
    Steved
    Guest

    Re: To Leave Cell blank Please

    Hello Biff from Steved

    Thankyou and yes I've taken on board your comment about large Worksheet
    but in this case it is a small one

    Thankyou.

    "Biff" wrote:

    > Hi!
    >
    > Sometimes it's more efficient to use conditional formatting to "hide"
    > unwanted returns!
    >
    > Instead of using an array SUM(IF, use this:
    >
    > =IF(SUMPRODUCT(--('From Charters'!$A$1:$A$900="Roskill"),--('From
    > Charters'!$B$1:$B$900="Period.1"),'From
    > Charters'!$D$1:$D$900)=0,"",SUMPRODUCT(--('From
    > Charters'!$A$1:$A$900="Roskill"),--('From
    > Charters'!$B$1:$B$900="Period.1"),'From Charters'!$D$1:$D$900))
    >
    > If your wb is large with lots of these types of formulas consider this:
    >
    > This formula takes twice as long to calculate and uses relatively large
    > arrays.
    >
    > Biff
    >
    > "Steved" <[email protected]> wrote in message
    > news:[email protected]...
    > > Hello from Steved
    > >
    > > If no Data the cell is returning a 0 value I need it in this case to be
    > > blank please.
    > >
    > > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    > >
    > > Thankyou.

    >
    >
    >


  14. #14
    Biff
    Guest

    Re: To Leave Cell blank Please

    Hi!

    Sometimes it's more efficient to use conditional formatting to "hide"
    unwanted returns!

    Instead of using an array SUM(IF, use this:

    =IF(SUMPRODUCT(--('From Charters'!$A$1:$A$900="Roskill"),--('From
    Charters'!$B$1:$B$900="Period.1"),'From
    Charters'!$D$1:$D$900)=0,"",SUMPRODUCT(--('From
    Charters'!$A$1:$A$900="Roskill"),--('From
    Charters'!$B$1:$B$900="Period.1"),'From Charters'!$D$1:$D$900))

    If your wb is large with lots of these types of formulas consider this:

    This formula takes twice as long to calculate and uses relatively large
    arrays.

    Biff

    "Steved" <[email protected]> wrote in message
    news:[email protected]...
    > Hello from Steved
    >
    > If no Data the cell is returning a 0 value I need it in this case to be
    > blank please.
    >
    > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >
    > Thankyou.




  15. #15
    Domenic
    Guest

    Re: To Leave Cell blank Please

    You can also custom format your cell...

    Format > Cells > Number > Custom > Type: 0;-0;;@

    Hope this helps!

    In article <[email protected]>,
    Steved <[email protected]> wrote:

    > Hello from Steved
    >
    > If no Data the cell is returning a 0 value I need it in this case to be
    > blank please.
    >
    > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >
    > Thankyou.


  16. #16
    Biff
    Guest

    Re: To Leave Cell blank Please

    Just be aware that just because you don't see a zero in that cell there is
    one!

    So, if say, you wanted to then average values in a range that carried that
    format, the unseen zeros could cause a problem!

    Biff

    "Steved" <[email protected]> wrote in message
    news:[email protected]...
    > Hello Domenic from Steved
    >
    > Domenic thankyou, Thius is a much better solution because you have a much
    > clearner formula.
    >
    > Great Stuff
    >
    > Thanks again for your thoughtfulness.
    >
    > "Domenic" wrote:
    >
    >> You can also custom format your cell...
    >>
    >> Format > Cells > Number > Custom > Type: 0;-0;;@
    >>
    >> Hope this helps!
    >>
    >> In article <[email protected]>,
    >> Steved <[email protected]> wrote:
    >>
    >> > Hello from Steved
    >> >
    >> > If no Data the cell is returning a 0 value I need it in this case to be
    >> > blank please.
    >> >
    >> > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    >> > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >> >
    >> > Thankyou.

    >>




  17. #17
    Steved
    Guest

    Re: To Leave Cell blank Please

    Hello Domenic from Steved

    Domenic thankyou, Thius is a much better solution because you have a much
    clearner formula.

    Great Stuff

    Thanks again for your thoughtfulness.

    "Domenic" wrote:

    > You can also custom format your cell...
    >
    > Format > Cells > Number > Custom > Type: 0;-0;;@
    >
    > Hope this helps!
    >
    > In article <[email protected]>,
    > Steved <[email protected]> wrote:
    >
    > > Hello from Steved
    > >
    > > If no Data the cell is returning a 0 value I need it in this case to be
    > > blank please.
    > >
    > > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    > >
    > > Thankyou.

    >


  18. #18
    Biff
    Guest

    Re: To Leave Cell blank Please

    Hi!

    Sometimes it's more efficient to use conditional formatting to "hide"
    unwanted returns!

    Instead of using an array SUM(IF, use this:

    =IF(SUMPRODUCT(--('From Charters'!$A$1:$A$900="Roskill"),--('From
    Charters'!$B$1:$B$900="Period.1"),'From
    Charters'!$D$1:$D$900)=0,"",SUMPRODUCT(--('From
    Charters'!$A$1:$A$900="Roskill"),--('From
    Charters'!$B$1:$B$900="Period.1"),'From Charters'!$D$1:$D$900))

    If your wb is large with lots of these types of formulas consider this:

    This formula takes twice as long to calculate and uses relatively large
    arrays.

    Biff

    "Steved" <[email protected]> wrote in message
    news:[email protected]...
    > Hello from Steved
    >
    > If no Data the cell is returning a 0 value I need it in this case to be
    > blank please.
    >
    > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >
    > Thankyou.




  19. #19
    Domenic
    Guest

    Re: To Leave Cell blank Please

    I like it too, but I have to keep referring to the help file to make
    sure I've got it right.

    In article <[email protected]>,
    "Biff" <[email protected]> wrote:

    > Nice!
    >
    > I don't think I've ever seen that one!
    >
    > That's going into my stash.
    >
    > Biff
    >
    > "Domenic" <[email protected]> wrote in message
    > news:[email protected]...
    > > You can also custom format your cell...
    > >
    > > Format > Cells > Number > Custom > Type: 0;-0;;@
    > >
    > > Hope this helps!
    > >
    > > In article <[email protected]>,
    > > Steved <[email protected]> wrote:
    > >
    > >> Hello from Steved
    > >>
    > >> If no Data the cell is returning a 0 value I need it in this case to be
    > >> blank please.
    > >>
    > >> SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > >> Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    > >>
    > >> Thankyou.


  20. #20
    Biff
    Guest

    Re: To Leave Cell blank Please

    Nice!

    I don't think I've ever seen that one!

    That's going into my stash.

    Biff

    "Domenic" <[email protected]> wrote in message
    news:[email protected]...
    > You can also custom format your cell...
    >
    > Format > Cells > Number > Custom > Type: 0;-0;;@
    >
    > Hope this helps!
    >
    > In article <[email protected]>,
    > Steved <[email protected]> wrote:
    >
    >> Hello from Steved
    >>
    >> If no Data the cell is returning a 0 value I need it in this case to be
    >> blank please.
    >>
    >> SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    >> Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >>
    >> Thankyou.




  21. #21
    Steved
    Guest

    Re: To Leave Cell blank Please

    Hello Biff from Steved

    Thankyou and yes I've taken on board your comment about large Worksheet
    but in this case it is a small one

    Thankyou.

    "Biff" wrote:

    > Hi!
    >
    > Sometimes it's more efficient to use conditional formatting to "hide"
    > unwanted returns!
    >
    > Instead of using an array SUM(IF, use this:
    >
    > =IF(SUMPRODUCT(--('From Charters'!$A$1:$A$900="Roskill"),--('From
    > Charters'!$B$1:$B$900="Period.1"),'From
    > Charters'!$D$1:$D$900)=0,"",SUMPRODUCT(--('From
    > Charters'!$A$1:$A$900="Roskill"),--('From
    > Charters'!$B$1:$B$900="Period.1"),'From Charters'!$D$1:$D$900))
    >
    > If your wb is large with lots of these types of formulas consider this:
    >
    > This formula takes twice as long to calculate and uses relatively large
    > arrays.
    >
    > Biff
    >
    > "Steved" <[email protected]> wrote in message
    > news:[email protected]...
    > > Hello from Steved
    > >
    > > If no Data the cell is returning a 0 value I need it in this case to be
    > > blank please.
    > >
    > > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    > >
    > > Thankyou.

    >
    >
    >


  22. #22
    Biff
    Guest

    Re: To Leave Cell blank Please

    Hi!

    Sometimes it's more efficient to use conditional formatting to "hide"
    unwanted returns!

    Instead of using an array SUM(IF, use this:

    =IF(SUMPRODUCT(--('From Charters'!$A$1:$A$900="Roskill"),--('From
    Charters'!$B$1:$B$900="Period.1"),'From
    Charters'!$D$1:$D$900)=0,"",SUMPRODUCT(--('From
    Charters'!$A$1:$A$900="Roskill"),--('From
    Charters'!$B$1:$B$900="Period.1"),'From Charters'!$D$1:$D$900))

    If your wb is large with lots of these types of formulas consider this:

    This formula takes twice as long to calculate and uses relatively large
    arrays.

    Biff

    "Steved" <[email protected]> wrote in message
    news:[email protected]...
    > Hello from Steved
    >
    > If no Data the cell is returning a 0 value I need it in this case to be
    > blank please.
    >
    > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >
    > Thankyou.




  23. #23
    Steved
    Guest

    Re: To Leave Cell blank Please

    Hello Biff from Steved

    Thankyou and yes I've taken on board your comment about large Worksheet
    but in this case it is a small one

    Thankyou.

    "Biff" wrote:

    > Hi!
    >
    > Sometimes it's more efficient to use conditional formatting to "hide"
    > unwanted returns!
    >
    > Instead of using an array SUM(IF, use this:
    >
    > =IF(SUMPRODUCT(--('From Charters'!$A$1:$A$900="Roskill"),--('From
    > Charters'!$B$1:$B$900="Period.1"),'From
    > Charters'!$D$1:$D$900)=0,"",SUMPRODUCT(--('From
    > Charters'!$A$1:$A$900="Roskill"),--('From
    > Charters'!$B$1:$B$900="Period.1"),'From Charters'!$D$1:$D$900))
    >
    > If your wb is large with lots of these types of formulas consider this:
    >
    > This formula takes twice as long to calculate and uses relatively large
    > arrays.
    >
    > Biff
    >
    > "Steved" <[email protected]> wrote in message
    > news:[email protected]...
    > > Hello from Steved
    > >
    > > If no Data the cell is returning a 0 value I need it in this case to be
    > > blank please.
    > >
    > > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    > >
    > > Thankyou.

    >
    >
    >


  24. #24
    Biff
    Guest

    Re: To Leave Cell blank Please

    Nice!

    I don't think I've ever seen that one!

    That's going into my stash.

    Biff

    "Domenic" <[email protected]> wrote in message
    news:[email protected]...
    > You can also custom format your cell...
    >
    > Format > Cells > Number > Custom > Type: 0;-0;;@
    >
    > Hope this helps!
    >
    > In article <[email protected]>,
    > Steved <[email protected]> wrote:
    >
    >> Hello from Steved
    >>
    >> If no Data the cell is returning a 0 value I need it in this case to be
    >> blank please.
    >>
    >> SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    >> Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >>
    >> Thankyou.




  25. #25
    Steved
    Guest

    Re: To Leave Cell blank Please

    Hello Domenic from Steved

    Domenic thankyou, Thius is a much better solution because you have a much
    clearner formula.

    Great Stuff

    Thanks again for your thoughtfulness.

    "Domenic" wrote:

    > You can also custom format your cell...
    >
    > Format > Cells > Number > Custom > Type: 0;-0;;@
    >
    > Hope this helps!
    >
    > In article <[email protected]>,
    > Steved <[email protected]> wrote:
    >
    > > Hello from Steved
    > >
    > > If no Data the cell is returning a 0 value I need it in this case to be
    > > blank please.
    > >
    > > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    > >
    > > Thankyou.

    >


  26. #26
    Domenic
    Guest

    Re: To Leave Cell blank Please

    I like it too, but I have to keep referring to the help file to make
    sure I've got it right.

    In article <[email protected]>,
    "Biff" <[email protected]> wrote:

    > Nice!
    >
    > I don't think I've ever seen that one!
    >
    > That's going into my stash.
    >
    > Biff
    >
    > "Domenic" <[email protected]> wrote in message
    > news:[email protected]...
    > > You can also custom format your cell...
    > >
    > > Format > Cells > Number > Custom > Type: 0;-0;;@
    > >
    > > Hope this helps!
    > >
    > > In article <[email protected]>,
    > > Steved <[email protected]> wrote:
    > >
    > >> Hello from Steved
    > >>
    > >> If no Data the cell is returning a 0 value I need it in this case to be
    > >> blank please.
    > >>
    > >> SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > >> Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    > >>
    > >> Thankyou.


  27. #27
    Domenic
    Guest

    Re: To Leave Cell blank Please

    You can also custom format your cell...

    Format > Cells > Number > Custom > Type: 0;-0;;@

    Hope this helps!

    In article <[email protected]>,
    Steved <[email protected]> wrote:

    > Hello from Steved
    >
    > If no Data the cell is returning a 0 value I need it in this case to be
    > blank please.
    >
    > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >
    > Thankyou.


  28. #28
    Biff
    Guest

    Re: To Leave Cell blank Please

    Just be aware that just because you don't see a zero in that cell there is
    one!

    So, if say, you wanted to then average values in a range that carried that
    format, the unseen zeros could cause a problem!

    Biff

    "Steved" <[email protected]> wrote in message
    news:[email protected]...
    > Hello Domenic from Steved
    >
    > Domenic thankyou, Thius is a much better solution because you have a much
    > clearner formula.
    >
    > Great Stuff
    >
    > Thanks again for your thoughtfulness.
    >
    > "Domenic" wrote:
    >
    >> You can also custom format your cell...
    >>
    >> Format > Cells > Number > Custom > Type: 0;-0;;@
    >>
    >> Hope this helps!
    >>
    >> In article <[email protected]>,
    >> Steved <[email protected]> wrote:
    >>
    >> > Hello from Steved
    >> >
    >> > If no Data the cell is returning a 0 value I need it in this case to be
    >> > blank please.
    >> >
    >> > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    >> > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >> >
    >> > Thankyou.

    >>




  29. #29
    Biff
    Guest

    Re: To Leave Cell blank Please

    Hi!

    Sometimes it's more efficient to use conditional formatting to "hide"
    unwanted returns!

    Instead of using an array SUM(IF, use this:

    =IF(SUMPRODUCT(--('From Charters'!$A$1:$A$900="Roskill"),--('From
    Charters'!$B$1:$B$900="Period.1"),'From
    Charters'!$D$1:$D$900)=0,"",SUMPRODUCT(--('From
    Charters'!$A$1:$A$900="Roskill"),--('From
    Charters'!$B$1:$B$900="Period.1"),'From Charters'!$D$1:$D$900))

    If your wb is large with lots of these types of formulas consider this:

    This formula takes twice as long to calculate and uses relatively large
    arrays.

    Biff

    "Steved" <[email protected]> wrote in message
    news:[email protected]...
    > Hello from Steved
    >
    > If no Data the cell is returning a 0 value I need it in this case to be
    > blank please.
    >
    > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >
    > Thankyou.




  30. #30
    Steved
    Guest

    Re: To Leave Cell blank Please

    Hello Domenic from Steved

    Domenic thankyou, Thius is a much better solution because you have a much
    clearner formula.

    Great Stuff

    Thanks again for your thoughtfulness.

    "Domenic" wrote:

    > You can also custom format your cell...
    >
    > Format > Cells > Number > Custom > Type: 0;-0;;@
    >
    > Hope this helps!
    >
    > In article <[email protected]>,
    > Steved <[email protected]> wrote:
    >
    > > Hello from Steved
    > >
    > > If no Data the cell is returning a 0 value I need it in this case to be
    > > blank please.
    > >
    > > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    > >
    > > Thankyou.

    >


  31. #31
    Biff
    Guest

    Re: To Leave Cell blank Please

    Nice!

    I don't think I've ever seen that one!

    That's going into my stash.

    Biff

    "Domenic" <[email protected]> wrote in message
    news:[email protected]...
    > You can also custom format your cell...
    >
    > Format > Cells > Number > Custom > Type: 0;-0;;@
    >
    > Hope this helps!
    >
    > In article <[email protected]>,
    > Steved <[email protected]> wrote:
    >
    >> Hello from Steved
    >>
    >> If no Data the cell is returning a 0 value I need it in this case to be
    >> blank please.
    >>
    >> SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    >> Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >>
    >> Thankyou.




  32. #32
    Steved
    Guest

    Re: To Leave Cell blank Please

    Hello Biff from Steved

    Thankyou and yes I've taken on board your comment about large Worksheet
    but in this case it is a small one

    Thankyou.

    "Biff" wrote:

    > Hi!
    >
    > Sometimes it's more efficient to use conditional formatting to "hide"
    > unwanted returns!
    >
    > Instead of using an array SUM(IF, use this:
    >
    > =IF(SUMPRODUCT(--('From Charters'!$A$1:$A$900="Roskill"),--('From
    > Charters'!$B$1:$B$900="Period.1"),'From
    > Charters'!$D$1:$D$900)=0,"",SUMPRODUCT(--('From
    > Charters'!$A$1:$A$900="Roskill"),--('From
    > Charters'!$B$1:$B$900="Period.1"),'From Charters'!$D$1:$D$900))
    >
    > If your wb is large with lots of these types of formulas consider this:
    >
    > This formula takes twice as long to calculate and uses relatively large
    > arrays.
    >
    > Biff
    >
    > "Steved" <[email protected]> wrote in message
    > news:[email protected]...
    > > Hello from Steved
    > >
    > > If no Data the cell is returning a 0 value I need it in this case to be
    > > blank please.
    > >
    > > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    > >
    > > Thankyou.

    >
    >
    >


  33. #33
    Domenic
    Guest

    Re: To Leave Cell blank Please

    I like it too, but I have to keep referring to the help file to make
    sure I've got it right.

    In article <[email protected]>,
    "Biff" <[email protected]> wrote:

    > Nice!
    >
    > I don't think I've ever seen that one!
    >
    > That's going into my stash.
    >
    > Biff
    >
    > "Domenic" <[email protected]> wrote in message
    > news:[email protected]...
    > > You can also custom format your cell...
    > >
    > > Format > Cells > Number > Custom > Type: 0;-0;;@
    > >
    > > Hope this helps!
    > >
    > > In article <[email protected]>,
    > > Steved <[email protected]> wrote:
    > >
    > >> Hello from Steved
    > >>
    > >> If no Data the cell is returning a 0 value I need it in this case to be
    > >> blank please.
    > >>
    > >> SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > >> Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    > >>
    > >> Thankyou.


  34. #34
    Domenic
    Guest

    Re: To Leave Cell blank Please

    You can also custom format your cell...

    Format > Cells > Number > Custom > Type: 0;-0;;@

    Hope this helps!

    In article <[email protected]>,
    Steved <[email protected]> wrote:

    > Hello from Steved
    >
    > If no Data the cell is returning a 0 value I need it in this case to be
    > blank please.
    >
    > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >
    > Thankyou.


  35. #35
    Biff
    Guest

    Re: To Leave Cell blank Please

    Just be aware that just because you don't see a zero in that cell there is
    one!

    So, if say, you wanted to then average values in a range that carried that
    format, the unseen zeros could cause a problem!

    Biff

    "Steved" <[email protected]> wrote in message
    news:[email protected]...
    > Hello Domenic from Steved
    >
    > Domenic thankyou, Thius is a much better solution because you have a much
    > clearner formula.
    >
    > Great Stuff
    >
    > Thanks again for your thoughtfulness.
    >
    > "Domenic" wrote:
    >
    >> You can also custom format your cell...
    >>
    >> Format > Cells > Number > Custom > Type: 0;-0;;@
    >>
    >> Hope this helps!
    >>
    >> In article <[email protected]>,
    >> Steved <[email protected]> wrote:
    >>
    >> > Hello from Steved
    >> >
    >> > If no Data the cell is returning a 0 value I need it in this case to be
    >> > blank please.
    >> >
    >> > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    >> > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >> >
    >> > Thankyou.

    >>




  36. #36
    Biff
    Guest

    Re: To Leave Cell blank Please

    Just be aware that just because you don't see a zero in that cell there is
    one!

    So, if say, you wanted to then average values in a range that carried that
    format, the unseen zeros could cause a problem!

    Biff

    "Steved" <[email protected]> wrote in message
    news:[email protected]...
    > Hello Domenic from Steved
    >
    > Domenic thankyou, Thius is a much better solution because you have a much
    > clearner formula.
    >
    > Great Stuff
    >
    > Thanks again for your thoughtfulness.
    >
    > "Domenic" wrote:
    >
    >> You can also custom format your cell...
    >>
    >> Format > Cells > Number > Custom > Type: 0;-0;;@
    >>
    >> Hope this helps!
    >>
    >> In article <[email protected]>,
    >> Steved <[email protected]> wrote:
    >>
    >> > Hello from Steved
    >> >
    >> > If no Data the cell is returning a 0 value I need it in this case to be
    >> > blank please.
    >> >
    >> > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    >> > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >> >
    >> > Thankyou.

    >>




  37. #37
    Steved
    Guest

    Re: To Leave Cell blank Please

    Hello Domenic from Steved

    Domenic thankyou, Thius is a much better solution because you have a much
    clearner formula.

    Great Stuff

    Thanks again for your thoughtfulness.

    "Domenic" wrote:

    > You can also custom format your cell...
    >
    > Format > Cells > Number > Custom > Type: 0;-0;;@
    >
    > Hope this helps!
    >
    > In article <[email protected]>,
    > Steved <[email protected]> wrote:
    >
    > > Hello from Steved
    > >
    > > If no Data the cell is returning a 0 value I need it in this case to be
    > > blank please.
    > >
    > > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    > >
    > > Thankyou.

    >


  38. #38
    Biff
    Guest

    Re: To Leave Cell blank Please

    Hi!

    Sometimes it's more efficient to use conditional formatting to "hide"
    unwanted returns!

    Instead of using an array SUM(IF, use this:

    =IF(SUMPRODUCT(--('From Charters'!$A$1:$A$900="Roskill"),--('From
    Charters'!$B$1:$B$900="Period.1"),'From
    Charters'!$D$1:$D$900)=0,"",SUMPRODUCT(--('From
    Charters'!$A$1:$A$900="Roskill"),--('From
    Charters'!$B$1:$B$900="Period.1"),'From Charters'!$D$1:$D$900))

    If your wb is large with lots of these types of formulas consider this:

    This formula takes twice as long to calculate and uses relatively large
    arrays.

    Biff

    "Steved" <[email protected]> wrote in message
    news:[email protected]...
    > Hello from Steved
    >
    > If no Data the cell is returning a 0 value I need it in this case to be
    > blank please.
    >
    > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >
    > Thankyou.




  39. #39
    Domenic
    Guest

    Re: To Leave Cell blank Please

    I like it too, but I have to keep referring to the help file to make
    sure I've got it right.

    In article <[email protected]>,
    "Biff" <[email protected]> wrote:

    > Nice!
    >
    > I don't think I've ever seen that one!
    >
    > That's going into my stash.
    >
    > Biff
    >
    > "Domenic" <[email protected]> wrote in message
    > news:[email protected]...
    > > You can also custom format your cell...
    > >
    > > Format > Cells > Number > Custom > Type: 0;-0;;@
    > >
    > > Hope this helps!
    > >
    > > In article <[email protected]>,
    > > Steved <[email protected]> wrote:
    > >
    > >> Hello from Steved
    > >>
    > >> If no Data the cell is returning a 0 value I need it in this case to be
    > >> blank please.
    > >>
    > >> SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > >> Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    > >>
    > >> Thankyou.


  40. #40
    Domenic
    Guest

    Re: To Leave Cell blank Please

    You can also custom format your cell...

    Format > Cells > Number > Custom > Type: 0;-0;;@

    Hope this helps!

    In article <[email protected]>,
    Steved <[email protected]> wrote:

    > Hello from Steved
    >
    > If no Data the cell is returning a 0 value I need it in this case to be
    > blank please.
    >
    > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >
    > Thankyou.


  41. #41
    Steved
    Guest

    Re: To Leave Cell blank Please

    Hello Biff from Steved

    Thankyou and yes I've taken on board your comment about large Worksheet
    but in this case it is a small one

    Thankyou.

    "Biff" wrote:

    > Hi!
    >
    > Sometimes it's more efficient to use conditional formatting to "hide"
    > unwanted returns!
    >
    > Instead of using an array SUM(IF, use this:
    >
    > =IF(SUMPRODUCT(--('From Charters'!$A$1:$A$900="Roskill"),--('From
    > Charters'!$B$1:$B$900="Period.1"),'From
    > Charters'!$D$1:$D$900)=0,"",SUMPRODUCT(--('From
    > Charters'!$A$1:$A$900="Roskill"),--('From
    > Charters'!$B$1:$B$900="Period.1"),'From Charters'!$D$1:$D$900))
    >
    > If your wb is large with lots of these types of formulas consider this:
    >
    > This formula takes twice as long to calculate and uses relatively large
    > arrays.
    >
    > Biff
    >
    > "Steved" <[email protected]> wrote in message
    > news:[email protected]...
    > > Hello from Steved
    > >
    > > If no Data the cell is returning a 0 value I need it in this case to be
    > > blank please.
    > >
    > > SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    > > Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    > >
    > > Thankyou.

    >
    >
    >


  42. #42
    Biff
    Guest

    Re: To Leave Cell blank Please

    Nice!

    I don't think I've ever seen that one!

    That's going into my stash.

    Biff

    "Domenic" <[email protected]> wrote in message
    news:[email protected]...
    > You can also custom format your cell...
    >
    > Format > Cells > Number > Custom > Type: 0;-0;;@
    >
    > Hope this helps!
    >
    > In article <[email protected]>,
    > Steved <[email protected]> wrote:
    >
    >> Hello from Steved
    >>
    >> If no Data the cell is returning a 0 value I need it in this case to be
    >> blank please.
    >>
    >> SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    >> Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))
    >>
    >> Thankyou.




  43. #43
    Steved
    Guest

    To Leave Cell blank Please

    Hello from Steved

    If no Data the cell is returning a 0 value I need it in this case to be
    blank please.

    SUM(IF('From Charters'!$A$1:$A$900="Roskill",IF('From
    Charters'!$B$1:$B$900="Period.1",'From Charters'!$D$1:$D$900,0),0))

    Thankyou.

+ 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