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

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
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,198
Messages
6,123,589
Members
449,109
Latest member
Sebas8956

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