Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 76
Default =text(a1,"dddd") question

I am trying to auto fill or copy down this
formula, when I copy down Saturday shows up in every
cell, even if the orginal cell blank

How can I re-work the function so the cell will remain
blank until data is typed in the other cell
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default =text(a1,"dddd") question

Hi

=IF(A1<"",TEXT(A1,"dddd"),"")

Mke

"Dylan @ UAFC" wrote:

I am trying to auto fill or copy down this
formula, when I copy down Saturday shows up in every
cell, even if the orginal cell blank

How can I re-work the function so the cell will remain
blank until data is typed in the other cell

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 76
Default =text(a1,"dddd") question

would that work on this formula as well
=A1-WEEKDAY(A1)+7


"Mike H" wrote:

Hi

=IF(A1<"",TEXT(A1,"dddd"),"")

Mke

"Dylan @ UAFC" wrote:

I am trying to auto fill or copy down this
formula, when I copy down Saturday shows up in every
cell, even if the orginal cell blank

How can I re-work the function so the cell will remain
blank until data is typed in the other cell

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default =text(a1,"dddd") question

yup

=IF(A1="","",A1-WEEKDAY(A1)+1)

Mike

"Dylan @ UAFC" wrote:

would that work on this formula as well
=A1-WEEKDAY(A1)+7


"Mike H" wrote:

Hi

=IF(A1<"",TEXT(A1,"dddd"),"")

Mke

"Dylan @ UAFC" wrote:

I am trying to auto fill or copy down this
formula, when I copy down Saturday shows up in every
cell, even if the orginal cell blank

How can I re-work the function so the cell will remain
blank until data is typed in the other cell

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default =text(a1,"dddd") question

I would guess your Calculation mode is set to Manual.

Mike addressed the second part.


Gord Dibben MS Excel MVP


On Fri, 16 Jan 2009 10:53:01 -0800, Dylan @ UAFC
wrote:

I am trying to auto fill or copy down this
formula, when I copy down Saturday shows up in every
cell, even if the orginal cell blank

How can I re-work the function so the cell will remain
blank until data is typed in the other cell




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default =text(a1,"dddd") question

Gord,

I've never understood why but blank cells always evaluate as saturday even
if you use

=TEXT(WEEKDAY(A1),"dddd")

so the calculation manual/auto may not come into it.

Mike

Blank cell

"Gord Dibben" wrote:

I would guess your Calculation mode is set to Manual.

Mike addressed the second part.


Gord Dibben MS Excel MVP


On Fri, 16 Jan 2009 10:53:01 -0800, Dylan @ UAFC
wrote:

I am trying to auto fill or copy down this
formula, when I copy down Saturday shows up in every
cell, even if the orginal cell blank

How can I re-work the function so the cell will remain
blank until data is typed in the other cell



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default =text(a1,"dddd") question

I've never understood why but blank cells always evaluate as saturday

Because Excel recognizes a day 0. Think of the date serial numbers. 1 is Jan
1 1900 which Excel says is a Sunday.

1/0/1900 is a valid date in Excel and Excel evaluates day 0 as the last day
of the prior month so 0 or an empty cell represents 12/31/1899 which Excel
evaluates as Saturday even though 12/31/1899 is not a valid date.

Basically it's one of Excel's many quirks!

--
Biff
Microsoft Excel MVP


"Mike H" wrote in message
...
Gord,

I've never understood why but blank cells always evaluate as saturday even
if you use

=TEXT(WEEKDAY(A1),"dddd")

so the calculation manual/auto may not come into it.

Mike

Blank cell

"Gord Dibben" wrote:

I would guess your Calculation mode is set to Manual.

Mike addressed the second part.


Gord Dibben MS Excel MVP


On Fri, 16 Jan 2009 10:53:01 -0800, Dylan @ UAFC
wrote:

I am trying to auto fill or copy down this
formula, when I copy down Saturday shows up in every
cell, even if the orginal cell blank

How can I re-work the function so the cell will remain
blank until data is typed in the other cell





  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default =text(a1,"dddd") question

I should have been able to work that out myself but didn't. Thanks for the info

Mike

"T. Valko" wrote:

I've never understood why but blank cells always evaluate as saturday


Because Excel recognizes a day 0. Think of the date serial numbers. 1 is Jan
1 1900 which Excel says is a Sunday.

1/0/1900 is a valid date in Excel and Excel evaluates day 0 as the last day
of the prior month so 0 or an empty cell represents 12/31/1899 which Excel
evaluates as Saturday even though 12/31/1899 is not a valid date.

Basically it's one of Excel's many quirks!

--
Biff
Microsoft Excel MVP


"Mike H" wrote in message
...
Gord,

I've never understood why but blank cells always evaluate as saturday even
if you use

=TEXT(WEEKDAY(A1),"dddd")

so the calculation manual/auto may not come into it.

Mike

Blank cell

"Gord Dibben" wrote:

I would guess your Calculation mode is set to Manual.

Mike addressed the second part.


Gord Dibben MS Excel MVP


On Fri, 16 Jan 2009 10:53:01 -0800, Dylan @ UAFC
wrote:

I am trying to auto fill or copy down this
formula, when I copy down Saturday shows up in every
cell, even if the orginal cell blank

How can I re-work the function so the cell will remain
blank until data is typed in the other cell





  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default =text(a1,"dddd") question

You're welcome!

--
Biff
Microsoft Excel MVP


"Mike H" wrote in message
...
I should have been able to work that out myself but didn't. Thanks for the
info

Mike

"T. Valko" wrote:

I've never understood why but blank cells always evaluate as saturday


Because Excel recognizes a day 0. Think of the date serial numbers. 1 is
Jan
1 1900 which Excel says is a Sunday.

1/0/1900 is a valid date in Excel and Excel evaluates day 0 as the last
day
of the prior month so 0 or an empty cell represents 12/31/1899 which
Excel
evaluates as Saturday even though 12/31/1899 is not a valid date.

Basically it's one of Excel's many quirks!

--
Biff
Microsoft Excel MVP


"Mike H" wrote in message
...
Gord,

I've never understood why but blank cells always evaluate as saturday
even
if you use

=TEXT(WEEKDAY(A1),"dddd")

so the calculation manual/auto may not come into it.

Mike

Blank cell

"Gord Dibben" wrote:

I would guess your Calculation mode is set to Manual.

Mike addressed the second part.


Gord Dibben MS Excel MVP


On Fri, 16 Jan 2009 10:53:01 -0800, Dylan @ UAFC
wrote:

I am trying to auto fill or copy down this
formula, when I copy down Saturday shows up in every
cell, even if the orginal cell blank

How can I re-work the function so the cell will remain
blank until data is typed in the other cell







  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default =text(a1,"dddd") question

Mike.

I missed the "even if blank cell".

Biff

Thanks for setting us straight on the Saturday thing.


Gord

On Fri, 16 Jan 2009 16:13:09 -0500, "T. Valko"
wrote:

I've never understood why but blank cells always evaluate as saturday


Because Excel recognizes a day 0. Think of the date serial numbers. 1 is Jan
1 1900 which Excel says is a Sunday.

1/0/1900 is a valid date in Excel and Excel evaluates day 0 as the last day
of the prior month so 0 or an empty cell represents 12/31/1899 which Excel
evaluates as Saturday even though 12/31/1899 is not a valid date.

Basically it's one of Excel's many quirks!




  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default =text(a1,"dddd") question

My pleasure!

--
Biff
Microsoft Excel MVP


"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
Mike.

I missed the "even if blank cell".

Biff

Thanks for setting us straight on the Saturday thing.


Gord

On Fri, 16 Jan 2009 16:13:09 -0500, "T. Valko"
wrote:

I've never understood why but blank cells always evaluate as saturday


Because Excel recognizes a day 0. Think of the date serial numbers. 1 is
Jan
1 1900 which Excel says is a Sunday.

1/0/1900 is a valid date in Excel and Excel evaluates day 0 as the last
day
of the prior month so 0 or an empty cell represents 12/31/1899 which Excel
evaluates as Saturday even though 12/31/1899 is not a valid date.

Basically it's one of Excel's many quirks!




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Text "comparison" operator for "contains" used in an "IF" Function Pawaso Excel Worksheet Functions 4 April 4th 23 11:35 AM
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell Steve Kay Excel Discussion (Misc queries) 2 August 8th 08 01:54 AM
Conditional Formatting =IF($B10, TEXT("dddd"))? [email protected] Excel Worksheet Functions 6 January 9th 08 08:59 PM
"Disk is Full" add-on question to "Can't reset last cell" post tod [email protected] Excel Discussion (Misc queries) 0 January 22nd 07 02:32 AM
Insert "-" in text "1234567890" to have a output like this"123-456-7890" Alwyn Excel Discussion (Misc queries) 3 October 25th 05 11:36 PM


All times are GMT +1. The time now is 09:04 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"