Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default count signs in a cell

I want to write in maximum 34 sign in a cell. If I writes 1 signs moore I
want to get a warning. Is this possible in Excel Worksheet?
--
Kjell
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,726
Default count signs in a cell

Use data validation, allow type of custom, and a formula of

=LEN(A1)<=34

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

"Kjell" wrote in message
...
I want to write in maximum 34 sign in a cell. If I writes 1 signs moore I
want to get a warning. Is this possible in Excel Worksheet?
--
Kjell



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default count signs in a cell

Sorry. Don`t functions. May be I do something wrong?
--
Kjell


"Bob Phillips" wrote:

Use data validation, allow type of custom, and a formula of

=LEN(A1)<=34

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

"Kjell" wrote in message
...
I want to write in maximum 34 sign in a cell. If I writes 1 signs moore I
want to get a warning. Is this possible in Excel Worksheet?
--
Kjell




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
zz zz is offline
external usenet poster
 
Posts: 32
Default count signs in a cell

well, in a cell write

=if(len(write_cell_ref_here)34,"Too long","")

--
---
zz [MX]
cuasi-musico,semi-poeta y loco


"Kjell" wrote in message
...
Sorry. Don`t functions. May be I do something wrong?
--
Kjell


"Bob Phillips" wrote:

Use data validation, allow type of custom, and a formula of

=LEN(A1)<=34

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

"Kjell" wrote in message
...
I want to write in maximum 34 sign in a cell. If I writes 1 signs moore
I
want to get a warning. Is this possible in Excel Worksheet?
--
Kjell






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default count signs in a cell

I am feeling like a fool. Not function. If I use A1 to write in a name, using
letters and numbers f.ex. "1. floor detector" I want to get a message on the
screen, in some way, if I, while I am writing, exceed a total of letters and
numbers of 34.
--
Kjell


zz skrev:

well, in a cell write

=if(len(write_cell_ref_here)34,"Too long","")

--
---
zz [MX]
cuasi-musico,semi-poeta y loco


"Kjell" wrote in message
...
Sorry. Don`t functions. May be I do something wrong?
--
Kjell


"Bob Phillips" wrote:

Use data validation, allow type of custom, and a formula of

=LEN(A1)<=34

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

"Kjell" wrote in message
...
I want to write in maximum 34 sign in a cell. If I writes 1 signs moore
I
want to get a warning. Is this possible in Excel Worksheet?
--
Kjell








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,726
Default count signs in a cell

You can't get the error whilst you type, only after you hit enter.

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

"Kjell" wrote in message
...
I am feeling like a fool. Not function. If I use A1 to write in a name,

using
letters and numbers f.ex. "1. floor detector" I want to get a message on

the
screen, in some way, if I, while I am writing, exceed a total of letters

and
numbers of 34.
--
Kjell


zz skrev:

well, in a cell write

=if(len(write_cell_ref_here)34,"Too long","")

--
---
zz [MX]
cuasi-musico,semi-poeta y loco


"Kjell" wrote in message
...
Sorry. Don`t functions. May be I do something wrong?
--
Kjell


"Bob Phillips" wrote:

Use data validation, allow type of custom, and a formula of

=LEN(A1)<=34

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

"Kjell" wrote in message
...
I want to write in maximum 34 sign in a cell. If I writes 1 signs

moore
I
want to get a warning. Is this possible in Excel Worksheet?
--
Kjell








  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
zz zz is offline
external usenet poster
 
Posts: 32
Default count signs in a cell

when you type in a cell, excel goes into "edit mode" , that means, no macro
can called, no events are trigered and no code is executed until excel
leaves "edit mode".

excel is pretty much like Men's brain, it only can use half the brain at a
time :-)




but you can do this, if you don't mind waiting until you finish typing


In data menu

* goto validation

in the first field .

* select "Text lenght" option

in the second one
* select "less than"

in the third one

* type you lenght limitation , eg "34"

* 'click' "Ok"


then in the error alert tab

* check "show error alert after invalid data entered"

in the first combo

* choose the type of alert [ stop,warning,info,etc.]

in the first field

* type the title of you error message eg. "Damn!, you cannot type that
much!!" ;-)

in the second field

* type the error description you want the user to read eg. "What do you
think i am?, notepad?" LOL,



sorry.... ejm, ejm




Now,

*type something into your validated cell,



and finally

* have some fun



--
hope this works, if doesn't, tell us please.
---
zz [MX]
cuasi-musico,semi-poeta y loco




"Bob Phillips" wrote in message
...
You can't get the error whilst you type, only after you hit enter.

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

"Kjell" wrote in message
...
I am feeling like a fool. Not function. If I use A1 to write in a name,

using
letters and numbers f.ex. "1. floor detector" I want to get a message on

the
screen, in some way, if I, while I am writing, exceed a total of letters

and
numbers of 34.
--
Kjell


zz skrev:

well, in a cell write

=if(len(write_cell_ref_here)34,"Too long","")

--
---
zz [MX]
cuasi-musico,semi-poeta y loco


"Kjell" wrote in message
...
Sorry. Don`t functions. May be I do something wrong?
--
Kjell


"Bob Phillips" wrote:

Use data validation, allow type of custom, and a formula of

=LEN(A1)<=34

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

"Kjell" wrote in message
...
I want to write in maximum 34 sign in a cell. If I writes 1 signs

moore
I
want to get a warning. Is this possible in Excel Worksheet?
--
Kjell










  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default count signs in a cell

OK. I understand. My half brain (the working part) can wait until typing is
finished.
Thank you zz and Bob, for spending time on me and my problem. Have a nice
day whatever yuo may be in the world.
--
Kjell


zz skrev:

when you type in a cell, excel goes into "edit mode" , that means, no macro
can called, no events are trigered and no code is executed until excel
leaves "edit mode".

excel is pretty much like Men's brain, it only can use half the brain at a
time :-)




but you can do this, if you don't mind waiting until you finish typing


In data menu

* goto validation

in the first field .

* select "Text lenght" option

in the second one
* select "less than"

in the third one

* type you lenght limitation , eg "34"

* 'click' "Ok"


then in the error alert tab

* check "show error alert after invalid data entered"

in the first combo

* choose the type of alert [ stop,warning,info,etc.]

in the first field

* type the title of you error message eg. "Damn!, you cannot type that
much!!" ;-)

in the second field

* type the error description you want the user to read eg. "What do you
think i am?, notepad?" LOL,



sorry.... ejm, ejm




Now,

*type something into your validated cell,



and finally

* have some fun



--
hope this works, if doesn't, tell us please.
---
zz [MX]
cuasi-musico,semi-poeta y loco




"Bob Phillips" wrote in message
...
You can't get the error whilst you type, only after you hit enter.

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

"Kjell" wrote in message
...
I am feeling like a fool. Not function. If I use A1 to write in a name,

using
letters and numbers f.ex. "1. floor detector" I want to get a message on

the
screen, in some way, if I, while I am writing, exceed a total of letters

and
numbers of 34.
--
Kjell


zz skrev:

well, in a cell write

=if(len(write_cell_ref_here)34,"Too long","")

--
---
zz [MX]
cuasi-musico,semi-poeta y loco


"Kjell" wrote in message
...
Sorry. Don`t functions. May be I do something wrong?
--
Kjell


"Bob Phillips" wrote:

Use data validation, allow type of custom, and a formula of

=LEN(A1)<=34

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

"Kjell" wrote in message
...
I want to write in maximum 34 sign in a cell. If I writes 1 signs

moore
I
want to get a warning. Is this possible in Excel Worksheet?
--
Kjell











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
Cell References [email protected] Excel Discussion (Misc queries) 2 November 15th 06 11:37 PM
Using an offset formula for the reference in a relative reference Cuda Excel Worksheet Functions 6 November 15th 06 05:12 PM
Count on cell for each time it is changed Jelinek Excel Discussion (Misc queries) 3 January 9th 06 02:22 PM
Instead of a negative number, I'd like to show zero... Dr. Darrell Excel Worksheet Functions 6 December 7th 05 08:21 PM
Possible Lookup Table Karen Excel Worksheet Functions 5 June 8th 05 09:43 PM


All times are GMT +1. The time now is 12:15 AM.

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

About Us

"It's about Microsoft Excel"