+ Reply to Thread
Results 1 to 4 of 4

I don't want blank tp equal zero

  1. #1
    Registered User
    Join Date
    05-19-2006
    Posts
    1

    I don't want blank tp equal zero

    I have 2 worksheets which we will call sheet1 and sheet2.
    When I write =sheet1!a1 in sheet 2, and insert a number in cell a1 of sheet 1, that number appears in sheet 2. The problem is that when I have it blank, I get zero in sheet 2. I can I make blank show blank? Obviuosly I want to get zero if the number I insert is actually zero.

  2. #2
    Chip Pearson
    Guest

    Re: I don't want blank tp equal zero

    Try

    =IF(Sheet1!A1="","",Sheet1!A1)

    --
    Cordially,
    Chip Pearson
    Microsoft MVP - Excel
    Pearson Software Consulting, LLC
    www.cpearson.com



    "lovemark"
    <[email protected]> wrote in
    message
    news:[email protected]...
    >
    > I have 2 worksheets which we will call sheet1 and sheet2.
    > When I write =sheet1!a1 in sheet 2, and insert a number in
    > cell a1 of
    > sheet 1, that number appears in sheet 2. The problem is that
    > when I have
    > it blank, I get zero in sheet 2. I can I make blank show blank?
    > Obviuosly I want to get zero if the number I insert is actually
    > zero.
    >
    >
    > --
    > lovemark
    > ------------------------------------------------------------------------
    > lovemark's Profile:
    > http://www.excelforum.com/member.php...o&userid=34611
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=543836
    >




  3. #3
    Elkar
    Guest

    RE: I don't want blank tp equal zero

    Try this:

    =IF(Sheet2!A1="","",Sheet2!A1)

    HTH,
    Elkar


    "lovemark" wrote:

    >
    > I have 2 worksheets which we will call sheet1 and sheet2.
    > When I write =sheet1!a1 in sheet 2, and insert a number in cell a1 of
    > sheet 1, that number appears in sheet 2. The problem is that when I have
    > it blank, I get zero in sheet 2. I can I make blank show blank?
    > Obviuosly I want to get zero if the number I insert is actually zero.
    >
    >
    > --
    > lovemark
    > ------------------------------------------------------------------------
    > lovemark's Profile: http://www.excelforum.com/member.php...o&userid=34611
    > View this thread: http://www.excelforum.com/showthread...hreadid=543836
    >
    >


  4. #4
    Dave Peterson
    Guest

    Re: I don't want blank tp equal zero

    =if(sheet1!a1="","",sheet1!a1)



    lovemark wrote:
    >
    > I have 2 worksheets which we will call sheet1 and sheet2.
    > When I write =sheet1!a1 in sheet 2, and insert a number in cell a1 of
    > sheet 1, that number appears in sheet 2. The problem is that when I have
    > it blank, I get zero in sheet 2. I can I make blank show blank?
    > Obviuosly I want to get zero if the number I insert is actually zero.
    >
    > --
    > lovemark
    > ------------------------------------------------------------------------
    > lovemark's Profile: http://www.excelforum.com/member.php...o&userid=34611
    > View this thread: http://www.excelforum.com/showthread...hreadid=543836


    --

    Dave Peterson

+ 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