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

I'm loop through my data and need to set up an array based on some
conditions. Basically I'd like to do something like this:

for j=1 to 18
for rowcount=1 to 1000
if cells(rowcount,2) like "I" then
if cells(rowcount,3) like "A" or "B" or "C" then
myarray(j) = myarray(j) + cells(rowcount,4)
end if
end if
next rowcount
next j

What's the code for that? Thanks!


---
Message posted from http://www.ExcelForum.com/

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 473
Default if statement

Clui wrote:
Basically I'd like to do something like this:

Dim J As Integer
Dim RowCount As Integer
J=1
For RowCount=1 to 1000
If Cells(RowCount,2) = "I" Then
Select Case Cells(RowCount,3)
Case "A", "B", "C"
myarray(j) = myarray(j) + cells(rowcount,4)
j+j+1
End Select
End If
Next RowCount

Bill Manville
MVP - Microsoft Excel, Oxford, England
No email replies please - reply in newsgroup

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
IF statement inside a SUMIF statement.... or alternative method Sungibungi Excel Worksheet Functions 3 December 4th 09 06:22 PM
Reconcile Bank statement & Credit card statement & accounting data Bklynhyc Excel Worksheet Functions 0 October 7th 09 09:07 PM
Embedding an OR statement in an IF statement efficiently Chatnoir11 Excel Discussion (Misc queries) 4 February 2nd 09 08:12 PM
If statement or lookup statement not sure Renegade40 Excel Worksheet Functions 2 January 18th 09 06:11 AM
appending and IF statement to an existing IF statement spence Excel Worksheet Functions 1 February 28th 06 11:00 PM


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