Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 190
Default error message

hi,

i have the following:
If Application.WorksheetFunction.CountIf(Range("L1:L" & j), Range("L" &
j).Text) 1 And Range("L" & j) < "" Then

this works in other sheets, but i did some comparison to te other sheets and
found out that the other sheets do not contain values greater than 200
characters in the column L. How can i amend or fix this?

thanks in advance,
geebee

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default error message

You can use a formula like this (when j = 17):
=SUMPRODUCT(--(L1:L17=L17))

In code, you can do something like:

Dim myRng As Range
Dim myCell As Range
Dim j As Long
Dim myCount As Long

j = 17
With ActiveSheet
Set myRng = .Range("L1:L" & j)
Set myCell = .Range("l" & j)
myCount = .Evaluate("sumproduct(--(" & myRng.Address _
& "=" & myCell.Address & "))")

End With

MsgBox myCount


Did you really mean to include the row with the value?

geebee wrote:

hi,

i have the following:
If Application.WorksheetFunction.CountIf(Range("L1:L" & j), Range("L" &
j).Text) 1 And Range("L" & j) < "" Then

this works in other sheets, but i did some comparison to te other sheets and
found out that the other sheets do not contain values greater than 200
characters in the column L. How can i amend or fix this?

thanks in advance,
geebee


--

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
e-mail - error message Run-time error 429 CAM Excel Programming 1 July 15th 08 10:44 AM
replace VBA run-time error message with custom message BEEJAY Excel Programming 13 July 14th 06 03:59 PM
error message: compile error, argument not optional Pierre via OfficeKB.com Excel Programming 3 September 5th 05 03:45 PM
changing the message in an error message The Villages DA Excel Worksheet Functions 2 February 18th 05 05:30 PM
How do I get rid of "Compile error in hidden module" error message David Excel Discussion (Misc queries) 4 January 21st 05 11:39 PM


All times are GMT +1. The time now is 08:18 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"