Display the words "Today" & "Tomorrow" instead of the day

BloodyBill

New Member
Joined
Oct 5, 2020
Messages
33
Office Version
  1. 365
Platform
  1. Windows
I can't seem to find this, no matter how much I search. How can I automatically change today's date into the word "Today?"
I want the first column to show the corresponding day of the week, UNLESS it is today.
If it is today, I want it the day of the week to be replaced by either the word "Today."
This has to happen dynamically (change from day to day).
On Thursday, October 29...
1603983329255.png

The first and second columns would contain the same date, formatted differently.

Thanks for any help!
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Hi,

I took the cue from the title, which asked for "Tomorrow" also.
Took me ages to get the syntax right!

Code:
=IF(B1=TODAY()+1,"Tomorrow", IF(B1=TODAY(),"Today",TEXT(B1,"dddd")))
 
Upvote 0
Hi,

I took the cue from the title, which asked for "Tomorrow" also.
Took me ages to get the syntax right!

Code:
=IF(B1=TODAY()+1,"Tomorrow", IF(B1=TODAY(),"Today",TEXT(B1,"dddd")))
Yes, I wrote the title of this post, and then changed my mind to only need Today. Good to know that if I change my mind back, I can use yours. Thanks!
 
Upvote 0

Forum statistics

Threads
1,214,632
Messages
6,120,649
Members
448,975
Latest member
sweeberry

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top