Chart Title with Formula

M

mimi

I have created a chart title, whcih I want to automate
with the following formula:

=IF(ISBLANK(A1),A2&" charges to "&A3&" compared to rates
surveyed in "&D1&" including delivery and
collection",A2&" charges to "&A1&" compared to rates
surveyed in "&D1&" including delivery and collection")

Everything comes through perfectly from the corresponding
worksheet apart from the date (being D1), which is shown
as 38169.

This should read July 2004 (cell formatted to mmmm yyyy,
which is pulled through from another cell formated as dd
mmmm yyyy.

Can anyone help?

Many thanks
 
A

Andy Pope

Hi mimi,

Try using the TEXT() function.

=IF(ISBLANK(A1),A2&" charges to "&A3&" compared to rates
surveyed in "&D1&" including delivery and
collection",A2&" charges to "&A1&" compared to rates
surveyed in "& TEXT(D1,"mmmm yyyy")&" including delivery and collection")

Cheers
Andy
 

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