Combine results of 2 formulas

  • Thread starter Thread starter ordnance1
  • Start date Start date
O

ordnance1

In cell A1 is the formula:

=MIN(C3:C11) 'Returns the earliest date

In cell A2 is the formula:

=MAX(C3:C11) 'Returns the latest date

What I need is a formula that I can put in cell A5 which returns something
like:

12/14/08 to 01/22/09
 
You can do it like this:

=TEXT(MIN(C3:C11),"mm/dd/yy")&" to "&TEXT(MAX(C3:C11),"mm/dd/yy")

Hope this helps.

Pete
 
Hi,

Since you already have A1 and A2 results, enter the following in A5

=TEXT(A1,"m/d/yy")&" to "&TEXT(A2,"m/d/yy")
 

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

Back
Top