S sampath Member Nov 20, 2014 #1 Hi, I have en number of data in excel. Keep the particular data from huge data in every row. 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 16.8 KB · Views: 2
Hi, I have en number of data in excel. Keep the particular data from huge data in every row. 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
Asheesh Excel Ninja Nov 20, 2014 #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)))
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)))
S sampath Member Nov 20, 2014 #3 Hello Asheesh, Thanks for your assistance. It 's working like my expatiation. Regards, Sampath.S
Khalid NGO Excel Ninja Nov 20, 2014 #5 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,
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,