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

replace data containg slash '/' eg 08/12/2012 into 08122012

Good day Shekhar


Just use the find replace, find a forward slash and replace with nothing ie delete it and do for all in the work sheet
 
Hi,


Few more tips:


1. If your data have multiple slashes like
Code:
8/12/2012/2000/1111/AAA you can simply use substitute:


[code]=SUBSTITUTE(A1,"/","")


2. If you have got this data as Date then:


a) You can Custom Define Cell Format like (Right Click > Format Cells> Custom)& set as mmddyyyy


b) You can use another formula with dates:

=TEXT(A1,"MMDDYYYY")[/code]


Regards,
 
Back
Top