Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
jsc3489
 
Posts: n/a
Default Erro in Formula, Pleas Help?

The following are in cells H98 - h104:

=IF(LEN(C81)63,"1","0")
=IF(LEN(C82)63,"1","0")
=IF(LEN(C83)63,"1","0")
=IF(LEN(C84)63,"1","0")
=IF(LEN(C85)63,"1","0")
=IF(LEN(C86)63,"1","0")
=IF(LEN(C87)63,"1","0")
=IF(LEN(C88)63,"1","0")
=IF(LEN(C89)63,"1","0")
=IF(LEN(C90)63,"1","0")


=IF(VALUE(H98=1,"You have exceeded the alotted 63 character text in line 1.
You may have no more than 63 characters in the above
space(s).",IF(VALUE(H99=1,"Sorry, you have exceeded the alotted text in line
2. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H100=1,"Sorry, you have exceeded the alotted text in line
3. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H101=1,"Sorry, you have exceeded the alotted text in line
4. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H102=1,"Sorry, you have exceeded the alotted text in line
5. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H103=1,"Sorry, you have exceeded the alotted text in line
6. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H104=1,"Sorry, you have exceeded the alotted text in line
7. You may have no more than 63 characters in the above space(s).","
"))))))))))))))

I have followed the example given in help. What am I doing wrong?
--
( ) happy
  #2   Report Post  
bj
 
Posts: n/a
Default

you have end parenthesis in the wrong location in all of your if statements.
you have
=IF(VALUE(H98=1,"You ..."))))))))))))))
it should be
=IF(VALUE(H98)=1,"You ...")))))))

"jsc3489" wrote:

The following are in cells H98 - h104:

=IF(LEN(C81)63,"1","0")
=IF(LEN(C82)63,"1","0")
=IF(LEN(C83)63,"1","0")
=IF(LEN(C84)63,"1","0")
=IF(LEN(C85)63,"1","0")
=IF(LEN(C86)63,"1","0")
=IF(LEN(C87)63,"1","0")
=IF(LEN(C88)63,"1","0")
=IF(LEN(C89)63,"1","0")
=IF(LEN(C90)63,"1","0")


=IF(VALUE(H98=1,"You have exceeded the alotted 63 character text in line 1.
You may have no more than 63 characters in the above
space(s).",IF(VALUE(H99=1,"Sorry, you have exceeded the alotted text in line
2. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H100=1,"Sorry, you have exceeded the alotted text in line
3. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H101=1,"Sorry, you have exceeded the alotted text in line
4. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H102=1,"Sorry, you have exceeded the alotted text in line
5. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H103=1,"Sorry, you have exceeded the alotted text in line
6. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H104=1,"Sorry, you have exceeded the alotted text in line
7. You may have no more than 63 characters in the above space(s).","
"))))))))))))))

I have followed the example given in help. What am I doing wrong?
--
( ) happy

  #3   Report Post  
jsc3489
 
Posts: n/a
Default

I just figured that out, however, I had to write the text in diff cells and
reference to those cells,
--
me


"bj" wrote:

you have end parenthesis in the wrong location in all of your if statements.
you have
=IF(VALUE(H98=1,"You ..."))))))))))))))
it should be
=IF(VALUE(H98)=1,"You ...")))))))

"jsc3489" wrote:

The following are in cells H98 - h104:

=IF(LEN(C81)63,"1","0")
=IF(LEN(C82)63,"1","0")
=IF(LEN(C83)63,"1","0")
=IF(LEN(C84)63,"1","0")
=IF(LEN(C85)63,"1","0")
=IF(LEN(C86)63,"1","0")
=IF(LEN(C87)63,"1","0")
=IF(LEN(C88)63,"1","0")
=IF(LEN(C89)63,"1","0")
=IF(LEN(C90)63,"1","0")


=IF(VALUE(H98=1,"You have exceeded the alotted 63 character text in line 1.
You may have no more than 63 characters in the above
space(s).",IF(VALUE(H99=1,"Sorry, you have exceeded the alotted text in line
2. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H100=1,"Sorry, you have exceeded the alotted text in line
3. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H101=1,"Sorry, you have exceeded the alotted text in line
4. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H102=1,"Sorry, you have exceeded the alotted text in line
5. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H103=1,"Sorry, you have exceeded the alotted text in line
6. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H104=1,"Sorry, you have exceeded the alotted text in line
7. You may have no more than 63 characters in the above space(s).","
"))))))))))))))

I have followed the example given in help. What am I doing wrong?
--
( ) happy

  #4   Report Post  
bj
 
Posts: n/a
Default

another way to do it would have been
=if(max(H98:H104)0,"Sorry,you have exceeded the allotted 863 Character Text
in line "&(match(1,H98:H104)-97)&". you may have no more than 63 characters
in the above spaces.","")

"jsc3489" wrote:

I just figured that out, however, I had to write the text in diff cells and
reference to those cells,
--
me


"bj" wrote:

you have end parenthesis in the wrong location in all of your if statements.
you have
=IF(VALUE(H98=1,"You ..."))))))))))))))
it should be
=IF(VALUE(H98)=1,"You ...")))))))

"jsc3489" wrote:

The following are in cells H98 - h104:

=IF(LEN(C81)63,"1","0")
=IF(LEN(C82)63,"1","0")
=IF(LEN(C83)63,"1","0")
=IF(LEN(C84)63,"1","0")
=IF(LEN(C85)63,"1","0")
=IF(LEN(C86)63,"1","0")
=IF(LEN(C87)63,"1","0")
=IF(LEN(C88)63,"1","0")
=IF(LEN(C89)63,"1","0")
=IF(LEN(C90)63,"1","0")


=IF(VALUE(H98=1,"You have exceeded the alotted 63 character text in line 1.
You may have no more than 63 characters in the above
space(s).",IF(VALUE(H99=1,"Sorry, you have exceeded the alotted text in line
2. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H100=1,"Sorry, you have exceeded the alotted text in line
3. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H101=1,"Sorry, you have exceeded the alotted text in line
4. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H102=1,"Sorry, you have exceeded the alotted text in line
5. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H103=1,"Sorry, you have exceeded the alotted text in line
6. You may have no more than 63 characters in the above
space(s).",IF(VALUE(H104=1,"Sorry, you have exceeded the alotted text in line
7. You may have no more than 63 characters in the above space(s).","
"))))))))))))))

I have followed the example given in help. What am I doing wrong?
--
( ) happy

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
referencing named formula using INDIRECT function [email protected] Excel Worksheet Functions 19 May 11th 05 09:48 AM
Simplify formula Luke Excel Worksheet Functions 37 May 6th 05 07:21 AM
put formula results into a different cell if it is empty PutFormula Excel Worksheet Functions 2 February 11th 05 03:31 AM
how do i write a formula and keep in in formula form, so it DOESN. norcalchick2207 Excel Discussion (Misc queries) 2 February 4th 05 08:38 PM
Match / Vlookup within an Array formula Hari Prasadh Excel Discussion (Misc queries) 3 February 3rd 05 04:37 PM


All times are GMT +1. The time now is 11:25 PM.

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"