If cell contains 6 charactors copy them
Closed
Deanna
-
Jun 3, 2010 at 09:11 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Jun 3, 2010 at 10:04 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Jun 3, 2010 at 10:04 AM
Related:
- Suppose cell c5 contains the formula =b$6+c1
- Logitech formula vibration feedback wheel driver - Download - Drivers
- Excel grade formula - Guide
- Number to words in excel formula - Guide
- Date formula in excel dd/mm/yyyy - Guide
- Bloons td 6 free download - Download - Strategy
1 response
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Jun 3, 2010 at 10:04 AM
Jun 3, 2010 at 10:04 AM
try this formula
this assumes that if the length is less than 6 then do nothing
=IF(LEN(A1)=6, A1, IF(LEN(A1)>6,LEFT(A1,3),""))
this assumes that if the length is less than 6 then do nothing
=IF(LEN(A1)=6, A1, IF(LEN(A1)>6,LEFT(A1,3),""))