Concatenate with the formula values

G

Guest

When I, concatenate the values of two cells, Cell A1 contains the text
"Payables for the month of " & Cell B1 Contains the formula Value of Date".

When Concatenated the two cells the value in cell B1 is shown in number
format and not in date format as displayed in the cell.

How to get the date format ?

Regards
 
T

T. Valko

Based on the string in A1: Payables for the month of

I'm assuming you want the month name from the date in cell B1

=A1&" "&TEXT(B1,"mmmm")

A1 = Payables for the month of
B1 = 3/10/2007

Result of formula = Payables for the month of March

If B1 is ever empty the result will be: Payables for the month of January

So, you might want to add some robustness to the formula:

=IF(COUNTA(A1:B1)<2,"",A1&" "&TEXT(B1,"mmmm"))

If either cell is empty the formula cell will remain blank.

Biff
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top