K
Kjell
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?
want to get a warning. Is this possible in Excel Worksheet?
well, in a cell write
=if(len(write_cell_ref_here)>34,"Too long","")
Kjell said: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 said:Sorry. Don`t functions. May be I do something wrong?
--
Kjell
:
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)
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?
Bob Phillips said: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 said: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
Sorry. Don`t functions. May be I do something wrong?
--
Kjell
:
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)
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?
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 said: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 said: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
Sorry. Don`t functions. May be I do something wrong?
--
Kjell
:
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)
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?