Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 15
Default If Not equal to statements

I am trying to create a statement to the affect of:

If Range("AB20").Value = "N" and Range("W12:W80").Value < "Abe" Then

I cannot get this statement to run. Is it not possible to create a "not
equal to" statement listing a string of cells? i.e. "W12:W80" ?


--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...mming/200510/1
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default If Not equal to statements

Hi Erik,

Try:

If Range("AB20").Value = "N" And _
Application.CountIf(Range("W12:W80"), "Abe") = 0 Then


---
Regards,
Norman



"Erik K via OfficeKB.com" <u13156@uwe wrote in message
news:55d07a8f5c4f4@uwe...
I am trying to create a statement to the affect of:

If Range("AB20").Value = "N" and Range("W12:W80").Value < "Abe" Then

I cannot get this statement to run. Is it not possible to create a "not
equal to" statement listing a string of cells? i.e. "W12:W80" ?


--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...mming/200510/1



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default If Not equal to statements

You can test one cell for a value in that way, but not all. If they all must
equal Abe, you could try

If Range("AB20").Value = "N" AND _
Application.Countif(Range("W12:W80","Abe") = 69 Then



--

HTH

RP
(remove nothere from the email address if mailing direct)


"Erik K via OfficeKB.com" <u13156@uwe wrote in message
news:55d07a8f5c4f4@uwe...
I am trying to create a statement to the affect of:

If Range("AB20").Value = "N" and Range("W12:W80").Value < "Abe" Then

I cannot get this statement to run. Is it not possible to create a "not
equal to" statement listing a string of cells? i.e. "W12:W80" ?


--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...mming/200510/1



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 15
Default If Not equal to statements

I don't want all the cells to equal "Abe", I am trying to set a condition
that if "Abe" is not found in a range of cells then do the next argument.
This is how I have it currently:

Range("V96").Select
If Range("AG42").Value = "N" Then
ActiveCell = "Shane"
ElseIf Range("AG18").Value = "N" And Range("V12:V80").Value < "Abe"
Then
ActiveCell = "Abe"
Else: ActiveCell = "Alternate"
End If

Bob Phillips wrote:
You can test one cell for a value in that way, but not all. If they all must
equal Abe, you could try

If Range("AB20").Value = "N" AND _
Application.Countif(Range("W12:W80","Abe") = 69 Then

I am trying to create a statement to the affect of:

If Range("AB20").Value = "N" and Range("W12:W80").Value < "Abe" Then

I cannot get this statement to run. Is it not possible to create a "not
equal to" statement listing a string of cells? i.e. "W12:W80" ?



--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...mming/200510/1
  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 15
Default If Not equal to statements

I don't want all the cells to equal "Abe", I am trying to set a condition
that if "Abe" is not found in a range of cells then do the next argument.
This is how I have it currently:

Range("V96").Select
If Range("AG42").Value = "N" Then
ActiveCell = "Shane"
ElseIf Range("AG18").Value = "N" And Range("V12:V80").Value < "Abe"
Then
ActiveCell = "Abe"
Else: ActiveCell = "Alternate"
End If

Bob Phillips wrote:
You can test one cell for a value in that way, but not all. If they all must
equal Abe, you could try

If Range("AB20").Value = "N" AND _
Application.Countif(Range("W12:W80","Abe") = 69 Then

I am trying to create a statement to the affect of:

If Range("AB20").Value = "N" and Range("W12:W80").Value < "Abe" Then

I cannot get this statement to run. Is it not possible to create a "not
equal to" statement listing a string of cells? i.e. "W12:W80" ?



--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...mming/200510/1


  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default If Not equal to statements



--

HTH

RP
(remove nothere from the email address if mailing direct)


"Erik K via OfficeKB.com" <u13156@uwe wrote in message
news:55d0f68112890@uwe...
I don't want all the cells to equal "Abe", I am trying to set a condition
that if "Abe" is not found in a range of cells then do the next argument.
This is how I have it currently:

Range("V96").Select
If Range("AG42").Value = "N" Then
ActiveCell = "Shane"
ElseIf Range("AG18").Value = "N" And Range("V12:V80").Value <

"Abe"
Then
ActiveCell = "Abe"
Else: ActiveCell = "Alternate"
End If

Bob Phillips wrote:
You can test one cell for a value in that way, but not all. If they all

must
equal Abe, you could try

If Range("AB20").Value = "N" AND _
Application.Countif(Range("W12:W80","Abe") = 69 Then

I am trying to create a statement to the affect of:

If Range("AB20").Value = "N" and Range("W12:W80").Value < "Abe" Then

I cannot get this statement to run. Is it not possible to create a

"not
equal to" statement listing a string of cells? i.e. "W12:W80" ?



--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...mming/200510/1



  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default If Not equal to statements

Okay, so apply so logic to it and work out that instead of =69 the test
should be = 0

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Erik K via OfficeKB.com" <u13156@uwe wrote in message
news:55d0f68112890@uwe...
I don't want all the cells to equal "Abe", I am trying to set a condition
that if "Abe" is not found in a range of cells then do the next argument.
This is how I have it currently:

Range("V96").Select
If Range("AG42").Value = "N" Then
ActiveCell = "Shane"
ElseIf Range("AG18").Value = "N" And Range("V12:V80").Value <

"Abe"
Then
ActiveCell = "Abe"
Else: ActiveCell = "Alternate"
End If

Bob Phillips wrote:
You can test one cell for a value in that way, but not all. If they all

must
equal Abe, you could try

If Range("AB20").Value = "N" AND _
Application.Countif(Range("W12:W80","Abe") = 69 Then

I am trying to create a statement to the affect of:

If Range("AB20").Value = "N" and Range("W12:W80").Value < "Abe" Then

I cannot get this statement to run. Is it not possible to create a

"not
equal to" statement listing a string of cells? i.e. "W12:W80" ?



--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...mming/200510/1



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
can I make cell "yes" equal 1, "no" equal 0 can I make cell yes equal 1, no equa Excel Discussion (Misc queries) 4 April 22nd 23 06:09 AM
If statements using less than or equal with dates Tigers00 Excel Worksheet Functions 2 July 12th 09 03:18 AM
CountIF(A9:A20, B9 not equal B10, B10 not equal B11, etc.) Red Herald Excel Worksheet Functions 2 November 13th 08 12:11 AM
operator statements, shorting when reusing one of the statements? KR Excel Programming 1 August 4th 05 06:20 PM
lower and upper case equal on spreadsheet but not equal in VB don Excel Programming 2 March 13th 05 12:04 AM


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