Excel - delete info from a cell found in anot
Solved/Closed
sssecasiu
Posts
1
Registration date
Sunday December 18, 2011
Status
Member
Last seen
December 18, 2011
-
Dec 18, 2011 at 08:06 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Dec 20, 2011 at 09:25 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Dec 20, 2011 at 09:25 AM
Related:
- Excel - delete info from a cell found in anot
- Delete my whatsapp account without app - Guide
- Number to words in excel - Guide
- Gif in excel - Guide
- Marksheet in excel - Guide
- How to take screenshot in excel - Guide
3 responses
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
555
Dec 19, 2011 at 09:57 AM
Dec 19, 2011 at 09:57 AM
Hi Sevastian,
If the value of C2 is always at the end of the value in F2 seperated by a space then use this formula:
=LEFT(F2;LEN(F2)-(LEN(C2)+1))
Will this work for you?
Best regards,
Trowa
If the value of C2 is always at the end of the value in F2 seperated by a space then use this formula:
=LEFT(F2;LEN(F2)-(LEN(C2)+1))
Will this work for you?
Best regards,
Trowa
RWomanizer
Posts
365
Registration date
Monday February 7, 2011
Status
Contributor
Last seen
September 30, 2013
120
Dec 20, 2011 at 12:59 AM
Dec 20, 2011 at 12:59 AM
Use the following Fomula it will helps you:
=REPLACE(F2,FIND(C2,F2),LEN(C2),"")
Cheers!
RAhul :)
=REPLACE(F2,FIND(C2,F2),LEN(C2),"")
Cheers!
RAhul :)
Hi Trowa,
The problem is, e.g.: that cell C2 contains: 263-67/42 and cell F2 contains: Maxi Chronometer 43mm Model 263-67/42.
I need to only delete "263-67/42" from cell F2 and remain with "Maxi Chronometer 43mm Model".
The codes from column C are always different as well as the info from column F.
Any ideas?
Thanks,
The problem is, e.g.: that cell C2 contains: 263-67/42 and cell F2 contains: Maxi Chronometer 43mm Model 263-67/42.
I need to only delete "263-67/42" from cell F2 and remain with "Maxi Chronometer 43mm Model".
The codes from column C are always different as well as the info from column F.
Any ideas?
Thanks,
Dec 20, 2011 at 09:25 AM
Formula should be:
LEFT(F2,LEN(F2)-(LEN(C2)+1))
And now you have two formula's to choose from.