Excel 2013 Date problem

staticpony

New Member
Joined
Oct 2, 2013
Messages
7
How do i Make the date in cell e23 show at the end of text.
Example =If (k23 >= e23 "paid ","paid on ",e23)
First part of the formula works fine but when i add the last e23 i get an error.
Thanks in advance.
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Like this ?
With "&" not Comma ","

Excel Formula:
=IF(K23>=E23,"paid ","paid on "&E23)
 
Upvote 0
date in cell e23 show at the end of text.
Since E23 is a date you will need to format it to include with text. perhaps this? (adjust date format if required)
Excel Formula:
=IF(K23>=E23,"paid ","paid on "&TEXT(E23,"d/mm/yyyy"))
 
Upvote 0
Solution
Thank you Peter it works just great. I used the formula with the TEXT and format column for date to show.
Once Thanks
 
Upvote 0
You're welcome. Thanks for the follow-up. You don't need to format the column with the formula as Date though. :)
 
Upvote 0

Forum statistics

Threads
1,215,972
Messages
6,128,015
Members
449,414
Latest member
sameri

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