• 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.

How to find all the characters after the last dot in a text

Hi Manish ,


Using Faseeh's answer to your earlier question , use this :


=IF(RIGHT(A1,1)=".","",RIGHT(A1,LEN(A1)-LEN(SUBSTITUTE(A1,".",""))))


where A1 has your string manish.agrawal.der.yup.mips


Narayan
 
Hi Manish ,


The correct formula is :


=IFERROR(RIGHT(A1,LEN(A1)-FIND("|",SUBSTITUTE(A1,".","|",LEN(A1)-LEN(SUBSTITUTE(A1,".",""))))),"")


Narayan
 
Back
Top