Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hey guys, this should be a simple one but I still havn't gotten it. The code is he Code: -------------------- Public Function results() As Double Dim answers(9, 9) As Double Dim i, j, component As Integer For i = 20 To 29 For j = 7 To 15 ThisWorkbook.Worksheets("Calculations").Cells(i, j).Activate component = ThisWorkbook.Worksheets("Calculations").Cells(Acti veCell.row, 6).Value Select Case component Case 1 answers(i, j) = conversion(i, j) + flush(i, j) + additive(i, j) Case 2 answers(i, j) = conversion(i, j) + flush(i, j) + additive(i, j) Case Else answers(i, j) = conversion(i, j) End Select Next j Next i End Function -------------------- Conversion, Flush and Additive are all seperate functions being called to from here. The error is in this line: Code: -------------------- ThisWorkbook.Worksheets("Calculations").Cells(i, j).Select -------------------- It returns a select range error on this line implying that it is not properly addressed. Thanks. ~Jason -- jclark419 ------------------------------------------------------------------------ jclark419's Profile: http://www.excelforum.com/member.php...o&userid=25430 View this thread: http://www.excelforum.com/showthread...hreadid=392200 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VBA: Column Select then Data Select then return to cell A1 | Excel Discussion (Misc queries) | |||
Using formulas to select cells (Ex: Select every nth cell in a col | Excel Discussion (Misc queries) | |||
error: ActiveCell.Offset(0, -1).Select = Application-defined or object-defined error | Excel Programming | |||
Error on select statement | Excel Programming | |||
Range Select Error | Excel Programming |