Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello,
I've exported an access table into excel. In the process, it looks like some of the entries were truncated. How can I find all cells with 255 characters? I'd like to check each one for possible truncation. Thanks, Ellen |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Run this short macro:
Sub findLong() For Each r In ActiveSheet.UsedRange If Len(r.Value) 254 Then r.Interior.ColorIndex = 6 End If Next End Sub or use Conditional Formatting to do the same function. -- Gary''s Student - gsnu200832 "EllenM" wrote: Hello, I've exported an access table into excel. In the process, it looks like some of the entries were truncated. How can I find all cells with 255 characters? I'd like to check each one for possible truncation. Thanks, Ellen |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Works beautifully!!
|
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
For future reference, please post your questions in ONE newsgroup only... I
just finished wasting my time answer this same question of yours in (one of) the other newsgroups you posted it in. -- Rick (MVP - Excel) "EllenM" wrote in message ... Works beautifully!! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Bottom of cells are truncated when printed after using auto row he | Excel Discussion (Misc queries) | |||
Text in cells is truncated. | Excel Discussion (Misc queries) | |||
Truncated wrapped text cells in Excel | Excel Discussion (Misc queries) | |||
Excel truncated my cells when copying, how to avoid?? | Excel Discussion (Misc queries) | |||
Format cells to display truncated values? | Excel Discussion (Misc queries) |