TEXT(IF(ISTEXT(B41)=FALSE,B41,IF(ISTEXT(C41)=FALSE,C41,IF(ISTEXT(D41)=FALSE,DC41,IF(ISTEXT(E41)=FALSE,E41,IF(ISTEXT(F41)=FALSE,F41,IF(ISTEXT(G41)=FALSE,G41,"")))))),"DD-MMM-YYYY")


try this see whether it works for you o


On Fri, Dec 18, 2009 at 10:51 AM, rf1234 rf1234 <rfhyd1...@gmail.com> wrote:

> Dear paul Thanks For reply.
> I know concatenation
>
> =CONCATENATE(B2,C2,D2,E2,F2,G2)
> =(B2&""&C2&""&D2&""&E2&""&F2&""&G2)
> Will not give the suitable result
>
> As i have already tried.Prblem is that 6 person enter the data for same
> client and
> now i have to concatenate these report.
>
> As i mension in the example above that if
>       Client
> *Date at sheet1* *Date at sheet2* *Date at sheet3* *Date at sheet4* *Date
> at sheet5* *Date at sheet6*
>  uw001
> 0-Jan-00 0-Jan-00 0-Jan-00 29-Nov-08 0-Jan-00 0-Jan-00
>
> then answer should be 29-Nov-08 Because uw001 have date
>
> for
>       uw006
> 0-Jan-00 0-Jan-00 9-Jan-08 0-Jan-00 0-Jan-00 0-Jan-00 9-Jan-08
>
> answer should be 9-Jan-08
>
> i think u will understand my problem.
>
> really appriciate your fast assistance.
>
> please reply me if any 1 have a solution.
>
>
> On Thu, Dec 17, 2009 at 8:34 PM, Paul Schreiner <schreiner_p...@att.net>wrote:
>
>>  Not sure of your meaning..
>> "concatenate" means to join two strings end-to-end.
>> so, your first line becomes:
>> 0-Jan-000-Jan-000-Jan-0029-Nov-080-Jan-000-Jan-00
>>
>> THAT is the meaning of "concatenation".
>>
>> At first glance, it looks like you're trying to find the maximum
>> (or latest) date.
>> However, in your example, line 10
>> has a 8-Jun-08 in the second column, and 9-feb-08 is in column 5.
>> yet your "final" date is 9-feb...
>>
>> If this is just a fluke.. then here's what I'd do:
>> Note:  In Excel, there is no such thing as a "date".
>> it's really a number, the number of days since 1/1/1900.
>> 39781 days since 1/1/1900 is November 29, 2008.
>> so Excel DISPLAYS the number as a date.
>> it doesn't mean that the number IS a date, it is just
>> SHOWN as a date.
>> (and TIME? is really just the fractional part of a day.
>> 39781.3706712963 is November 29, 2008 at 8:53:46AM)
>>
>> The reason that this is important is that if you want to find
>> the most recent date, you really just need to look for the
>> largest number.
>>
>> try:  =MAX(A2:G2) in row 2 and copy it down.
>> be sure to change the cell formatting to Date format.
>>
>> Is this what you were trying to do?
>>
>> Paul
>>  ------------------------------
>> *From:* shyam <rfhyd1...@gmail.com>
>> *To:* MS EXCEL AND VBA MACROS <excel-macros@googlegroups.com>
>> *Sent:* Thu, December 17, 2009 8:32:23 AM
>> *Subject:* $$Excel-Macros$$ Concatenate after checking all cell
>>
>> Date at sheet1    Date at sheet2    Date at sheet3    Date at sheet4
>> Date at
>> sheet5    Date at sheet6    Concatenate(Final po Date)
>> 0-Jan-00    0-Jan-00    0-Jan-00    29-Nov-08    0-Jan-00    0-Jan-00
>> 29-Nov-08
>> 0-Jan-00    0-Jan-00    0-Jan-00    29-Nov-08    0-Jan-00    0-Jan-00
>> 29-Nov-08
>> 0-Jan-00    0-Jan-00    0-Jan-00    29-Nov-08    0-Jan-00    0-Jan-00
>> 29-Nov-08
>> 0-Jan-00    0-Jan-00    0-Jan-00    29-Nov-08    0-Jan-00    0-Jan-00
>> 29-Nov-08
>> 0-Jan-00    0-Jan-00    0-Jan-00    29-Nov-08    0-Jan-00    0-Jan-00
>> 29-Nov-08
>> 0-Jan-00    0-Jan-00    9-Jan-08    0-Jan-00    0-Jan-00    0-Jan-00
>> 9-Jan-08
>> 0-Jan-00    0-Jan-00    0-Jan-00    29-Nov-08    0-Jan-00    0-Jan-00
>> 29-Nov-08
>> 0-Jan-00    0-Jan-00    0-Jan-00    29-Nov-08    0-Jan-00    0-Jan-00
>> 29-Nov-08
>> 0-Jan-00    8-Jun-08    0-Jan-00    0-Jan-00    9-Feb-08    0-Jan-00
>> 9-Feb-08
>> 0-Jan-00    0-Jan-00    0-Jan-00    29-Nov-08    0-Jan-00    0-Jan-00
>> 29-Nov-08
>> 0-Jan-00    0-Jan-00    0-Jan-00    29-Nov-08    0-Jan-00    0-Jan-00
>> 29-Nov-08
>> 0-Jan-00    0-Jan-00    0-Jan-00    29-Nov-08    0-Jan-00    0-Jan-00
>> 29-Nov-08
>> 0-Jan-00    0-Jan-00    8-Jun-08    0-Jan-00    0-Jan-00    0-Jan-00
>> 8-Jun-08
>> 0-Jan-00    0-Jan-00    0-Jan-00    1-Jan-08    0-Jan-00    0-Jan-00
>> 1-Jan-08
>> 0-Jan-00    0-Jan-00    0-Jan-00    0-Jan-00    7-Sep-08    0-Jan-00
>> 7-Sep-08
>> 8-Jun-08    0-Jan-00    0-Jan-00    0-Jan-00    0-Jan-00    0-Jan-00
>> 8-Jun-08
>> 0-Jan-00    0-Jan-00    11-Sep-08    0-Jan-00    0-Jan-00    0-Jan-00
>> 11-Sep-08
>> 0-Jan-00    0-Jan-00    8-Jun-08    0-Jan-00    0-Jan-00    0-Jan-00
>> 8-Jun-08
>> 0-Jan-00    0-Jan-00    7-Sep-08    0-Jan-00    0-Jan-00    0-Jan-00
>> 7-Sep-08
>> 8-Jun-08    0-Jan-00    8-Jun-08    0-Jan-00    8-Jun-08    8-Jun-08
>> 8-Jun-08
>> 8-Jun-08    0-Jan-00    8-Jun-08    0-Jan-00    8-Jun-08  9-Jun-08    #N/A
>>
>>
>>
>>
>> Please help me out to concatenate date a1:a6 and display in a7
>> problem is listed as above.
>>
>> date should be as it is in date formate.
>>
>> I have already try vlookup and concatenate.
>>
>> --
>>
>> ----------------------------------------------------------------------------------
>> Some important links for excel users:
>> 1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at
>> http://www.excelitems.com
>> 2. Excel tutorials at http://www.excel-macros.blogspot.com
>> 3. Learn VBA Macros at http://www.vbamacros.blogspot.com
>> 4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>>
>>
>> To post to this group, send email to excel-macros@googlegroups.com
>> If you find any spam message in the group, please send an email to:
>> Ayush Jain  @ jainayus...@gmail.com or
>> Ashish Jain @ 26may.1...@gmail.com
>> <><><><><><><><><><><><><><><><><><><><><><>
>> HELP US GROW !!
>>
>> We reach over 6,500 subscribers worldwide and receive many nice notes
>> about the learning and support from the group. Our goal is to have 10,000
>> subscribers by the end of 2009. Let friends and co-workers know they can
>> subscribe to group at
>> http://groups.google.com/group/excel-macros/subscribe
>>
>> --
>>
>> ----------------------------------------------------------------------------------
>> Some important links for excel users:
>> 1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at
>> http://www.excelitems.com
>> 2. Excel tutorials at http://www.excel-macros.blogspot.com
>> 3. Learn VBA Macros at http://www.vbamacros.blogspot.com
>> 4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>>
>>
>> To post to this group, send email to excel-macros@googlegroups.com
>> If you find any spam message in the group, please send an email to:
>> Ayush Jain @ jainayus...@gmail.com or
>> Ashish Jain @ 26may.1...@gmail.com
>> <><><><><><><><><><><><><><><><><><><><><><>
>> HELP US GROW !!
>>
>> We reach over 6,500 subscribers worldwide and receive many nice notes
>> about the learning and support from the group. Our goal is to have 10,000
>> subscribers by the end of 2009. Let friends and co-workers know they can
>> subscribe to group at
>> http://groups.google.com/group/excel-macros/subscribe
>>
>
> --
>
> ----------------------------------------------------------------------------------
> Some important links for excel users:
> 1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at
> http://www.excelitems.com
> 2. Excel tutorials at http://www.excel-macros.blogspot.com
> 3. Learn VBA Macros at http://www.vbamacros.blogspot.com
> 4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
>
> To post to this group, send email to excel-macros@googlegroups.com
> If you find any spam message in the group, please send an email to:
> Ayush Jain @ jainayus...@gmail.com or
> Ashish Jain @ 26may.1...@gmail.com
> <><><><><><><><><><><><><><><><><><><><><><>
> HELP US GROW !!
>
> We reach over 6,500 subscribers worldwide and receive many nice notes about
> the learning and support from the group. Our goal is to have 10,000
> subscribers by the end of 2009. Let friends and co-workers know they can
> subscribe to group at
> http://groups.google.com/group/excel-macros/subscribe
>

-- 
----------------------------------------------------------------------------------
Some important links for excel users:
1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
2. Excel tutorials at http://www.excel-macros.blogspot.com
3. Learn VBA Macros at http://www.vbamacros.blogspot.com
4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com or
Ashish Jain @ 26may.1...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

We reach over 6,500 subscribers worldwide and receive many nice notes about the 
learning and support from the group. Our goal is to have 10,000 subscribers by 
the end of 2009. Let friends and co-workers know they can subscribe to group at 
http://groups.google.com/group/excel-macros/subscribe

Reply via email to