Adding Text, Date and Numbers together in a formula

  • Thread starter Thread starter Bazy2k
  • Start date Start date
B

Bazy2k

Hi

Basically i have a list that comprises of the following information

Date Amount
22/10/2008 (in date format) 2556.43835616438 (in number format,specific)

All i want to be able to do is at the end of each row put the following into
the cell
"Paid 22/10/2008 £2,556.44" without having to write it out everytime.

How can i have the word "Paid" with the date in cell A2 and the amount in
cell B2 correct to 2dp.
Thanks.
 
With date & value in A1 & B1, use:

="Paid " & TEXT(A1,"dd/mm/yyyy") & " £" & TEXT(B1,"#,##0.00")
 
Back
Top