Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default number of characters in each cell

I am importing signals into some software using a CSV file. The signals can
only have a maximum of 32 characters in each cell. I have over 12000 signals
to import and there are at least 60 that are over the 32 character limit.

Is there anyway that I might be able to find these cells without having to
manually count the characters in each cell?
  #2   Report Post  
Posted to microsoft.public.excel.misc
Don Don is offline
external usenet poster
 
Posts: 487
Default number of characters in each cell

try creating in another column next to the one you want to count the
charactors and put the formula =LEN(A1) where A1 is the first signal. Then
sort the sheet decending in the =LEN column and all the longer signals should
sort to the top

"jaywizz" wrote:

I am importing signals into some software using a CSV file. The signals can
only have a maximum of 32 characters in each cell. I have over 12000 signals
to import and there are at least 60 that are over the 32 character limit.

Is there anyway that I might be able to find these cells without having to
manually count the characters in each cell?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default number of characters in each cell

Maybe you could search using some wild cards:

Select the range (all the cells???) to search
Edit|Find
what: ????????????????????????????????*
(look in values if you've added formulas)
Find All (in later versions of excel)

That's 33 ?'s and and an asterisk.

jaywizz wrote:

I am importing signals into some software using a CSV file. The signals can
only have a maximum of 32 characters in each cell. I have over 12000 signals
to import and there are at least 60 that are over the 32 character limit.

Is there anyway that I might be able to find these cells without having to
manually count the characters in each cell?


--

Dave Peterson
  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default number of characters in each cell

Or he could put this formula in the column next to the one with the
signals...

=IF(LEN(A1)32,"<<==","")

Then double click the small, black square in the bottom right corner of the
cell in order to automatically copy it down through all 12000 cells... the
ones that are longer than 32 characters will be pointed at.

Rick


"Don" wrote in message
...
try creating in another column next to the one you want to count the
charactors and put the formula =LEN(A1) where A1 is the first signal.
Then
sort the sheet decending in the =LEN column and all the longer signals
should
sort to the top

"jaywizz" wrote:

I am importing signals into some software using a CSV file. The signals
can
only have a maximum of 32 characters in each cell. I have over 12000
signals
to import and there are at least 60 that are over the 32 character limit.

Is there anyway that I might be able to find these cells without having
to
manually count the characters in each cell?


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default number of characters in each cell

What about using Conditional Formatting to let Excel show you which cells
have text greater than 32 characters in them. Select the entire column (that
contains your signal text) and then click Format/ConditionalFormatting from
Excel's menu bar. Select "Formula Is" from the first drop down, copy/paste
this formula into the 2nd field...

=LEN(A1)32

where I have assumed your signal text is in Column A and that you selected
the entire column. Next, click the Format button, then the Pattern tab and
select a light (pastel) color from the chart. Finally, OK your way back to
the worksheet. All the cells contain signal text longer than 32 characters
will be highlighted in the color you selected.

Rick


"jaywizz" wrote in message
...
I am importing signals into some software using a CSV file. The signals can
only have a maximum of 32 characters in each cell. I have over 12000
signals
to import and there are at least 60 that are over the 32 character limit.

Is there anyway that I might be able to find these cells without having to
manually count the characters in each cell?




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default number of characters in each cell

If your data is spread over multiple columns, you could insert another worksheet
and fill it with a formula like:

=if(len(sheet1!a1)32,1,"")
(Put this in A1 and drag to the right and down as far as necessary)

Then look for the 1's in that worksheet.

Select all the cells
edit|goto
special|Constants and only check numbers.

The cells in the same addresses will be offending cells in sheet1.

jaywizz wrote:

I am importing signals into some software using a CSV file. The signals can
only have a maximum of 32 characters in each cell. I have over 12000 signals
to import and there are at least 60 that are over the 32 character limit.

Is there anyway that I might be able to find these cells without having to
manually count the characters in each cell?


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Keep specified number of characters at end of cell? Kevin Excel Worksheet Functions 1 July 20th 07 04:40 PM
How can I count the number of characters on a cell? EddieDial800 Excel Discussion (Misc queries) 11 May 22nd 07 04:29 PM
Number of characters in a cell Braders999 Excel Discussion (Misc queries) 3 July 10th 06 02:39 PM
set the number of characters in a cell CF Excel Discussion (Misc queries) 4 February 9th 06 09:37 PM
Max number of characters in a cell Dajana Excel Discussion (Misc queries) 1 September 25th 05 10:41 PM


All times are GMT +1. The time now is 11:17 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"