SOLVED

Excel cell formatting

Copper Contributor

A have a formula in a cell that I want to show as a date format as "04/26 to 05/02".

 

The formula entered is "=A3&" to "&A87"

 

Cell a3 is "4/26/2020" & Cell a87 is a formula "=A73+1" which adds my work week formatted in a long date format showing weekday, month, day, year.

 

The cell in which the formula is entered shows "43947 to 43953"

 

It is meant to show the beginning and end date of my work week.

 

I've tried different date formulas to no avail.

 

 

4 Replies
best response confirmed by snojoe10 (Copper Contributor)
Solution

@snojoe10 

Try this:

=TEXT(A3,"mm/dd")&" to "&TEXT(A87,"mm/dd")

 

@Riny_van_Eekelen 

 

Awesome!

 

Thanks so much! Works great.

 

Now, would it be possible to add "Hours" to the end?

 

Thanks again Riny for your super helpful and quick response.

 

 

@snojoe10 

add to the formula

& " Hours"

@Sergei Baklan 

 

Bingo!

 

Thanks Sergei.

 

Worked perfectly!

1 best response

Accepted Solutions
best response confirmed by snojoe10 (Copper Contributor)
Solution

@snojoe10 

Try this:

=TEXT(A3,"mm/dd")&" to "&TEXT(A87,"mm/dd")

 

View solution in original post