thanks, alok. i wrote something like this. to be clear, i declared tricor and oos as ranges.
If radOverall Then
If chTricor Then
Set Tricor = Range("RankTricorAll")
TricorCount = 1
Else
Set Tricor = shRankings.Range("B3")
TricorCount = 0
End If
If chOOS Then
Set OOS = Range("RankOOSAll")
OOSCount = 1
Else
Set OOS = shRankings.Range("B3")
OOSCount = 0
End If
shRankings.Range("AverageAll").Formula = Tricor + OOS
End If
and that didn't work. it said type mismatch error. what did i do wrong? (don't worry about the count stuff for now. i didn't include it in the formula because i'm still testing it).
and it's not an entirely new question since it's just a problem i encountered when trying to implement the solution to this one. i don't like creating multiple threads, as it seems like spam.
Bookmarks