ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Column Cell character number checking (https://www.excelbanter.com/excel-programming/428666-column-cell-character-number-checking.html)

tlee

Column Cell character number checking
 
Hi all,

How can I check the number of the characters at the specified column of
whole cells? (by using Macro)

e.g.
1) Prompt the message box to select range of columns to check.

2) input the several columns would be check

3) Macro will check all the cells of the relative columns for example, the
number character (including "Spaces" and "symbols")

4) Highlight the excess number of characters cells or activate (let the user
tor re-change the content of the problem cell to below the limit of
character length)

Assume the cell character length is 20.

Thanks for your help.

TLee



Patrick Molloy

Column Cell character number checking
 
something simple ... this code assumes the area has been selected

dim cell as range
dim source as range
set source = Selection
for each cell in source
if LEN(cell.Value)20 then
cell.interior.ColorIndex = XLRED
end if
next

"tlee" wrote in message
...
Hi all,

How can I check the number of the characters at the specified column of
whole cells? (by using Macro)

e.g.
1) Prompt the message box to select range of columns to check.

2) input the several columns would be check

3) Macro will check all the cells of the relative columns for example, the
number character (including "Spaces" and "symbols")

4) Highlight the excess number of characters cells or activate (let the
user tor re-change the content of the problem cell to below the limit of
character length)

Assume the cell character length is 20.

Thanks for your help.

TLee



tlee

Column Cell character number checking
 
Hi Patrick,

Thanks for your help, you are so powerful !!!
How you enrich the programming knowledge?

Thanks again

TLee



dim cell as range
dim source as range
set source = Selection
for each cell in source
if LEN(cell.Value)20 then
cell.interior.ColorIndex = XLRED
end if
next

"tlee" wrote in message
...
Hi all,

How can I check the number of the characters at the specified column of
whole cells? (by using Macro)

e.g.
1) Prompt the message box to select range of columns to check.

2) input the several columns would be check

3) Macro will check all the cells of the relative columns for example,
the number character (including "Spaces" and "symbols")

4) Highlight the excess number of characters cells or activate (let the
user tor re-change the content of the problem cell to below the limit of
character length)

Assume the cell character length is 20.

Thanks for your help.

TLee



Patrick Molloy

Column Cell character number checking
 
shucks, blush

thank you

"tlee" wrote in message
...
Hi Patrick,

Thanks for your help, you are so powerful !!!
How you enrich the programming knowledge?

Thanks again

TLee



dim cell as range
dim source as range
set source = Selection
for each cell in source
if LEN(cell.Value)20 then
cell.interior.ColorIndex = XLRED
end if
next

"tlee" wrote in message
...
Hi all,

How can I check the number of the characters at the specified column of
whole cells? (by using Macro)

e.g.
1) Prompt the message box to select range of columns to check.

2) input the several columns would be check

3) Macro will check all the cells of the relative columns for example,
the number character (including "Spaces" and "symbols")

4) Highlight the excess number of characters cells or activate (let the
user tor re-change the content of the problem cell to below the limit of
character length)

Assume the cell character length is 20.

Thanks for your help.

TLee



tlee

Column Cell character number checking
 
Hi Patrick,

You're so modest : )

TLee

shucks, blush

thank you

"tlee" wrote in message
...
Hi Patrick,

Thanks for your help, you are so powerful !!!
How you enrich the programming knowledge?

Thanks again

TLee



dim cell as range
dim source as range
set source = Selection
for each cell in source
if LEN(cell.Value)20 then
cell.interior.ColorIndex = XLRED
end if
next

"tlee" wrote in message
...
Hi all,

How can I check the number of the characters at the specified column
of whole cells? (by using Macro)

e.g.
1) Prompt the message box to select range of columns to check.

2) input the several columns would be check

3) Macro will check all the cells of the relative columns for example,
the number character (including "Spaces" and "symbols")

4) Highlight the excess number of characters cells or activate (let the
user tor re-change the content of the problem cell to below the limit
of character length)

Assume the cell character length is 20.

Thanks for your help.

TLee




All times are GMT +1. The time now is 03:24 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com