Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Red Cross Rose
 
Posts: n/a
Default How do I set up if/then formulas in Excel?

How do I write a formula for Excel to read the value in a cell that will be
Monday, Tuesday, Wednesday, etc. and respond with a corellating day.

For example, "Today is Monday, this report is due Thursday". I realize
Monday and Thursday will be represented in their own cells.

Thank you!
  #2   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default How do I set up if/then formulas in Excel?

="Report due on "&TEXT(A1,"dddd")

where A1 is your date.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Red Cross Rose" <Red Cross wrote in message
...
How do I write a formula for Excel to read the value in a cell that will

be
Monday, Tuesday, Wednesday, etc. and respond with a corellating day.

For example, "Today is Monday, this report is due Thursday". I realize
Monday and Thursday will be represented in their own cells.

Thank you!



  #3   Report Post  
Posted to microsoft.public.excel.misc
Red Cross Rose
 
Posts: n/a
Default How do I set up if/then formulas in Excel?

Bob, thanks for your reply, but I'm afraid I'm too much of a novice to make
your instructions work for the calculation.

"Bob Phillips" wrote:

="Report due on "&TEXT(A1,"dddd")

where A1 is your date.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Red Cross Rose" <Red Cross wrote in message
...
How do I write a formula for Excel to read the value in a cell that will

be
Monday, Tuesday, Wednesday, etc. and respond with a corellating day.

For example, "Today is Monday, this report is due Thursday". I realize
Monday and Thursday will be represented in their own cells.

Thank you!




  #4   Report Post  
Posted to microsoft.public.excel.misc
paul
 
Posts: n/a
Default How do I set up if/then formulas in Excel?

we need more info.How are the days "stored" Are they typed monday tuesday etc
or do they represent a real excel date formatted as dddd.?

--
paul
remove nospam for email addy!



"Red Cross Rose" wrote:

How do I write a formula for Excel to read the value in a cell that will be
Monday, Tuesday, Wednesday, etc. and respond with a corellating day.

For example, "Today is Monday, this report is due Thursday". I realize
Monday and Thursday will be represented in their own cells.

Thank you!

  #5   Report Post  
Posted to microsoft.public.excel.misc
Red Cross Rose
 
Posts: n/a
Default How do I set up if/then formulas in Excel?

The days will be manually typed in each morning. It's just a basic 2-line
entry that will say
Today is MONDAY (or whatever that day is) February 20 2006
72 hour reports for THURSDAY February 23 2006 are due today
We can manually enter the day/date on the first line, but I want excel to
automatically calculate the day/date of the reports that are due on the
second line.

Thanks Paul!

"paul" wrote:

we need more info.How are the days "stored" Are they typed monday tuesday etc
or do they represent a real excel date formatted as dddd.?

--
paul
remove nospam for email addy!



"Red Cross Rose" wrote:

How do I write a formula for Excel to read the value in a cell that will be
Monday, Tuesday, Wednesday, etc. and respond with a corellating day.

For example, "Today is Monday, this report is due Thursday". I realize
Monday and Thursday will be represented in their own cells.

Thank you!



  #6   Report Post  
Posted to microsoft.public.excel.misc
pinmaster
 
Posts: n/a
Default How do I set up if/then formulas in Excel?

If you are going to type the date each morning then why not make it
completetly automatic.......in the first line (cell) type =TODAY() and format
the cell as dddd to show the day, in the second line (cell) type ="72 hour
reports for "&TEXT(TODAY()+3,"ddd mmm dd, yyyy")&" is due today"

But what about the weekend? Does saturday and sunday count in the 72 hours?

HTH
Jean-Guy

"Red Cross Rose" wrote:

The days will be manually typed in each morning. It's just a basic 2-line
entry that will say
Today is MONDAY (or whatever that day is) February 20 2006
72 hour reports for THURSDAY February 23 2006 are due today
We can manually enter the day/date on the first line, but I want excel to
automatically calculate the day/date of the reports that are due on the
second line.

Thanks Paul!

"paul" wrote:

we need more info.How are the days "stored" Are they typed monday tuesday etc
or do they represent a real excel date formatted as dddd.?

--
paul
remove nospam for email addy!



"Red Cross Rose" wrote:

How do I write a formula for Excel to read the value in a cell that will be
Monday, Tuesday, Wednesday, etc. and respond with a corellating day.

For example, "Today is Monday, this report is due Thursday". I realize
Monday and Thursday will be represented in their own cells.

Thank you!

  #7   Report Post  
Posted to microsoft.public.excel.misc
Roger Govier
 
Posts: n/a
Default How do I set up if/then formulas in Excel?

Hi

With an Excel date in cell A1 which is a Monday e.g. 20/02/2006 then
="Today is "&TEXT(A1,"dddd")&", this report is due "&TEXT(A1+3,"dddd")

--
Regards

Roger Govier


"Red Cross Rose" <Red Cross wrote in
message ...
How do I write a formula for Excel to read the value in a cell that
will be
Monday, Tuesday, Wednesday, etc. and respond with a corellating day.

For example, "Today is Monday, this report is due Thursday". I
realize
Monday and Thursday will be represented in their own cells.

Thank you!



  #8   Report Post  
Posted to microsoft.public.excel.misc
Red Cross Rose
 
Posts: n/a
Default How do I set up if/then formulas in Excel?

Hi Roger, thanks for your reply!

I tried what you suggested, but I'm getting a #VALUE! error. Would you
please break this down for me? Thank you for your patience with this novice!
I obviously need a training class!

Rose


"Roger Govier" wrote:

Hi

With an Excel date in cell A1 which is a Monday e.g. 20/02/2006 then
="Today is "&TEXT(A1,"dddd")&", this report is due "&TEXT(A1+3,"dddd")

--
Regards

Roger Govier


"Red Cross Rose" <Red Cross wrote in
message ...
How do I write a formula for Excel to read the value in a cell that
will be
Monday, Tuesday, Wednesday, etc. and respond with a corellating day.

For example, "Today is Monday, this report is due Thursday". I
realize
Monday and Thursday will be represented in their own cells.

Thank you!




  #9   Report Post  
Posted to microsoft.public.excel.misc
paul
 
Posts: n/a
Default How do I set up if/then formulas in Excel?

rose,cell A1 must ontain a proper excel date.In a1 type =today().Cell A1 will
now always shows todays date,and rogers formula will always show a report is
due in 3 days from today
--
paul
remove nospam for email addy!



"Red Cross Rose" wrote:

Hi Roger, thanks for your reply!

I tried what you suggested, but I'm getting a #VALUE! error. Would you
please break this down for me? Thank you for your patience with this novice!
I obviously need a training class!

Rose


"Roger Govier" wrote:

Hi

With an Excel date in cell A1 which is a Monday e.g. 20/02/2006 then
="Today is "&TEXT(A1,"dddd")&", this report is due "&TEXT(A1+3,"dddd")

--
Regards

Roger Govier


"Red Cross Rose" <Red Cross wrote in
message ...
How do I write a formula for Excel to read the value in a cell that
will be
Monday, Tuesday, Wednesday, etc. and respond with a corellating day.

For example, "Today is Monday, this report is due Thursday". I
realize
Monday and Thursday will be represented in their own cells.

Thank you!




  #10   Report Post  
Posted to microsoft.public.excel.misc
Roger Govier
 
Posts: n/a
Default How do I set up if/then formulas in Excel?

Hi Rose

As Paul pointed out, you need to have a valid Excel date entered into
cell A1.
(If I type 20.02.2006 in cell A1, I also get a #VALUE error.)
I chose 20/02/2006 for next Monday's date. Do ensure it is not a Text
representation of the date.
Highlight cell A1, then FormatCellsNumberDate and highlight the 3rd
option down which shows 14/03/2001
Now enter 20/02/2006 in the cell (or, whatever the format is for your
regional settings)

To provide a result exactly the same as your second post to Paul, then
use the following formula

="Today is "&TEXT(A1,"dddd")&" "&TEXT(A1,"mmmm dd yyyy")
& CHAR(10)& "72 hour reports for " &UPPER(TEXT(A1+3,"dddd"))
&" "&TEXT(A1+3,"mmmm dd yyyy")&" are due today"

I have deliberately forced line breaks into the formula to allow it to
come out more clearly in this posting. The formula is really just one
continuous entry.

If you format the cell in which you post the formula with line wrap on,
then it will show on 2 lines as you requested, once you widen the
column.
FormatCellsAlignmentWrap text

--
Regards

Roger Govier


"Red Cross Rose" wrote in
message ...
Hi Roger, thanks for your reply!

I tried what you suggested, but I'm getting a #VALUE! error. Would
you
please break this down for me? Thank you for your patience with this
novice!
I obviously need a training class!

Rose


"Roger Govier" wrote:

Hi

With an Excel date in cell A1 which is a Monday e.g. 20/02/2006 then
="Today is "&TEXT(A1,"dddd")&", this report is due
"&TEXT(A1+3,"dddd")

--
Regards

Roger Govier


"Red Cross Rose" <Red Cross wrote in
message ...
How do I write a formula for Excel to read the value in a cell that
will be
Monday, Tuesday, Wednesday, etc. and respond with a corellating
day.

For example, "Today is Monday, this report is due Thursday". I
realize
Monday and Thursday will be represented in their own cells.

Thank you!








  #11   Report Post  
Posted to microsoft.public.excel.misc
paul
 
Posts: n/a
Default How do I set up if/then formulas in Excel?

thanks Roger ,it was late and i realized I had only told half the story!
--
paul
remove nospam for email addy!



"Roger Govier" wrote:

Hi Rose

As Paul pointed out, you need to have a valid Excel date entered into
cell A1.
(If I type 20.02.2006 in cell A1, I also get a #VALUE error.)
I chose 20/02/2006 for next Monday's date. Do ensure it is not a Text
representation of the date.
Highlight cell A1, then FormatCellsNumberDate and highlight the 3rd
option down which shows 14/03/2001
Now enter 20/02/2006 in the cell (or, whatever the format is for your
regional settings)

To provide a result exactly the same as your second post to Paul, then
use the following formula

="Today is "&TEXT(A1,"dddd")&" "&TEXT(A1,"mmmm dd yyyy")
& CHAR(10)& "72 hour reports for " &UPPER(TEXT(A1+3,"dddd"))
&" "&TEXT(A1+3,"mmmm dd yyyy")&" are due today"

I have deliberately forced line breaks into the formula to allow it to
come out more clearly in this posting. The formula is really just one
continuous entry.

If you format the cell in which you post the formula with line wrap on,
then it will show on 2 lines as you requested, once you widen the
column.
FormatCellsAlignmentWrap text

--
Regards

Roger Govier


"Red Cross Rose" wrote in
message ...
Hi Roger, thanks for your reply!

I tried what you suggested, but I'm getting a #VALUE! error. Would
you
please break this down for me? Thank you for your patience with this
novice!
I obviously need a training class!

Rose


"Roger Govier" wrote:

Hi

With an Excel date in cell A1 which is a Monday e.g. 20/02/2006 then
="Today is "&TEXT(A1,"dddd")&", this report is due
"&TEXT(A1+3,"dddd")

--
Regards

Roger Govier


"Red Cross Rose" <Red Cross wrote in
message ...
How do I write a formula for Excel to read the value in a cell that
will be
Monday, Tuesday, Wednesday, etc. and respond with a corellating
day.

For example, "Today is Monday, this report is due Thursday". I
realize
Monday and Thursday will be represented in their own cells.

Thank you!






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
Printing Excel Formulas without file paths updating Kim Excel Discussion (Misc queries) 0 August 18th 05 04:55 PM
Simple formulas in existing Excel 2002 no longer working. AllieB Excel Worksheet Functions 3 May 3rd 05 04:14 PM
Help, Urgent Excel Formulas are not calculating maashoff Excel Discussion (Misc queries) 1 May 3rd 05 12:25 AM
I want Excel to allow cells with formulas and unrelated text blueboy Excel Discussion (Misc queries) 9 March 4th 05 12:22 AM
Problems with Excel formulas when 2002 upgraded to XP Kathi McGraw Excel Worksheet Functions 0 November 16th 04 05:27 PM


All times are GMT +1. The time now is 07:00 PM.

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

About Us

"It's about Microsoft Excel"