I am getting type mismatch 13 error and I can't see where it is.
Here is the code.
Set concRange = Range(Cells(11, 48), Cells((10 + noDilutions), 48))
Set deadRange = Range(Cells(11, 49), Cells((10 + noDilutions), 49))
analysisSheet.Cells(f, 14).Value = _
(WorksheetFunction.Lookup(WorksheetFunction.Index(deadRange, _
WorksheetFunction.CountIf(deadRange, " >= " & _
(WorksheetFunction.Max(deadRange) / 2))), deadRange, concRange)) _
- (((WorksheetFunction.Index(deadRange, WorksheetFunction.CountIf _
(deadRange, " >= " & (WorksheetFunction.Max(deadRange) / 2)))) _
- (WorksheetFunction.Max(deadRange) / 2)) * ((WorksheetFunction.Lookup _
(WorksheetFunction.Index(deadRange, WorksheetFunction.CountIf(deadRange, _
" >= " & (WorksheetFunction.Max(deadRange) / 2))), deadRange, concRange)) _
- (WorksheetFunction.Lookup(WorksheetFunction.Index(deadRange, _
WorksheetFunction.CountIf(deadRange, " <= " & _
(WorksheetFunction.Max(deadRange) / 2))), deadRange, concRange))) _
/ ((WorksheetFunction.Index(deadRange, WorksheetFunction.CountIf(deadRange, _
" >= " & (WorksheetFunction.Max(deadRange) / 2)))) _
- (WorksheetFunction.Index(deadRange, WorksheetFunction.CountIf _
(deadRange, " <= " & (WorksheetFunction.Max(deadRange) / 2))))))
I've tried changing "WorksheetFunction" to "Application" and "Application.WorksheetFunction".
Yes it is a very very long formula :D
Can anyone help me out?
cell.value– Scott Holtzman Jul 13 '12 at 15:36.Index(deadReange,..)which hints at where to start with splitting the code. – ja72 Jul 14 '12 at 6:09