Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to figure out a way to check to see if the cells in a column have
6 characters and if it doesn't is there a way I can have zeroes inserted for the cells that don't contain 6 characters in the designated column. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=if(len(cellref)=6,len(cellref),0)
By the above, if the length of word/number in the cell is '6' it would return the length which itself is '6' and if its not it would return '0'. cellref is cell reference example 'a1'. "SHAWTY721" wrote: I am trying to figure out a way to check to see if the cells in a column have 6 characters and if it doesn't is there a way I can have zeroes inserted for the cells that don't contain 6 characters in the designated column. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Cell Format as "000000" Or in another column : =LEFT("000000"; 6-LEN(A1) ) & A1 Or =IF(LEN(A3)=6;""; LEFT("000000"; 6-LEN(A3) ) & A3) Regards JY "SHAWTY721" wrote in message ... I am trying to figure out a way to check to see if the cells in a column have 6 characters and if it doesn't is there a way I can have zeroes inserted for the cells that don't contain 6 characters in the designated column. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Checking Column Entries | Excel Worksheet Functions | |||
Checking a column of values against another one | Charts and Charting in Excel | |||
checking if a column is hidden | Excel Programming | |||
checking celll in column | New Users to Excel | |||
checking value in column | Excel Programming |