• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Please assist me for delete the data....

sampath

Member
Hi,

I have en number of data in excel. Keep the particular data from huge data in every row.
upload_2014-11-20_14-32-8.png

In column A, using "RIGHT" function. Need Output as "G"column from "A"column.

kindly assist me for the same.

Thank with regards,
Sampath.S
 

Attachments

  • upload_2014-11-20_14-28-4.png
    upload_2014-11-20_14-28-4.png
    16.8 KB · Views: 2
Suppose your data is in A2 (Input)...put the below formula in column G as per the image attached... and drag it down as you deem fit..

IF(A2=TRIM(RIGHT(SUBSTITUTE(A2,"-",REPT(" ",99),2),99)),"",TRIM(RIGHT(SUBSTITUTE(A2,"-",REPT(" ",99),2),99)))
 
Hi Sampath,

Asheesh given you v.good ans, here is another one:
If the max length of your data = 14
you can go with this simple one:

=IF(LEN(A2)=14,RIGHT(A2,2),"")

Regards,
 
Back
Top