Jyggalag

Active Member
Joined
Mar 8, 2021
Messages
422
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
Hi all,

I have the following formula:

1644825529547.png


It checks if the cell in C9 is blank (which it is not, the text is just hidden) and then returns the current date of today.

However, I am also referring to cell C7 in another cell, specifically like this:

1644825614773.png



My issue is, obviously, that the cell returns the value 44606 rather than the date value from cell C7.

Can I somehow bypass this problem, so cell A39 correctly returns "X Tracking Status 14/02/2022" instead?

Thank you everybody!

Kind regards,
Jyggalag
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Try
Excel Formula:
="Tracking Status "& text($C$7,"d/mm/yyyy")
 
Upvote 0
Solution
Try
Excel Formula:
="Tracking Status "& text($C$7,"d/mm/yyyy")
It worked!!

Thank you so much!! I truly appreciate it :) You've saved me a bunch of trouble :D

My full code for anybody wondering (obviously a 99% copy of arthurbr's code):

=+ "XYZ Tracking Status" & " " & TEXT( $C$7, "d/mm/yyyy")

1644827152682.png
 
Upvote 0
BTW the "+" sign is not needed, that's a remnant form Lotus I think :)
 
Upvote 0

Forum statistics

Threads
1,215,372
Messages
6,124,535
Members
449,169
Latest member
mm424

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