+ Reply to Thread
Results 1 to 7 of 7

Show blank cell

  1. #1
    Registered User
    Join Date
    01-10-2006
    Posts
    10

    Show blank cell

    I have a worksheet where the person enters the date into cell E4.Cells L10:L60 =E4 so they don't have to type the date in every row of data. I copy & paste this data into an Access table so that's the reason why I have the date column along with cell E4. The problem is, when a data isn't present in E4 the empty cells show 1/0/1900. How can I get these cells to look empty?

    -Chuck-

  2. #2
    Gary''s Student
    Guest

    RE: Show blank cell

    This is a very common link problem. Instead of:
    =E4
    use:
    =if(E4="","",E4)
    --
    Gary's Student


    "Dropdown3" wrote:

    >
    > I have a worksheet where the person enters the date into cell E4.Cells
    > L10:L60 =E4 so they don't have to type the date in every row of data. I
    > copy & paste this data into an Access table so that's the reason why I
    > have the date column along with cell E4. The problem is, when a data
    > isn't present in E4 the empty cells show 1/0/1900. How can I get these
    > cells to look empty?
    >
    > -Chuck-
    >
    >
    > --
    > Dropdown3
    > ------------------------------------------------------------------------
    > Dropdown3's Profile: http://www.excelforum.com/member.php...o&userid=30321
    > View this thread: http://www.excelforum.com/showthread...hreadid=508255
    >
    >


  3. #3
    SVC
    Guest

    RE: Show blank cell

    In L4 type =If($E$4="","",$E$4) and copy down. This means that if E4 is
    blank, put in a blank, otherwise put in the content of E4.

    "Dropdown3" wrote:

    >
    > I have a worksheet where the person enters the date into cell E4.Cells
    > L10:L60 =E4 so they don't have to type the date in every row of data. I
    > copy & paste this data into an Access table so that's the reason why I
    > have the date column along with cell E4. The problem is, when a data
    > isn't present in E4 the empty cells show 1/0/1900. How can I get these
    > cells to look empty?
    >
    > -Chuck-
    >
    >
    > --
    > Dropdown3
    > ------------------------------------------------------------------------
    > Dropdown3's Profile: http://www.excelforum.com/member.php...o&userid=30321
    > View this thread: http://www.excelforum.com/showthread...hreadid=508255
    >
    >


  4. #4
    Sloth
    Guest

    RE: Show blank cell

    format the cell as

    d/m/yyyy;;

    this will make any negative or zero value show as a blank cell

    "Dropdown3" wrote:

    >
    > I have a worksheet where the person enters the date into cell E4.Cells
    > L10:L60 =E4 so they don't have to type the date in every row of data. I
    > copy & paste this data into an Access table so that's the reason why I
    > have the date column along with cell E4. The problem is, when a data
    > isn't present in E4 the empty cells show 1/0/1900. How can I get these
    > cells to look empty?
    >
    > -Chuck-
    >
    >
    > --
    > Dropdown3
    > ------------------------------------------------------------------------
    > Dropdown3's Profile: http://www.excelforum.com/member.php...o&userid=30321
    > View this thread: http://www.excelforum.com/showthread...hreadid=508255
    >
    >


  5. #5
    Mark Lincoln
    Guest

    Re: Show blank cell

    =IF(ISBLANK(E4,"",E4)


  6. #6
    Mark Lincoln
    Guest

    Re: Show blank cell

    Ack! I missed a parenthesis. The formula should read:

    =IF(ISBLANK(E4),"",E4)


  7. #7
    Registered User
    Join Date
    01-10-2006
    Posts
    10
    Thanks for all the replies. Every example listed worked.

    -Chuck-

+ 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