See attached as "prototype" using VBA
Sub Perfect_Points_X()
Dim inArr() As Variant
Dim outarr() As Variant
Dim r As Long
Dim c As Long
Dim n As Long
Dim nOK As Long
Dim lastrow As Long
Dim lastcol As Long
Dim inRng As Range
Dim outRng As Range
Dim ws1 As Worksheet
Dim Today As Date
Set ws1 = Worksheets("Sheet1")
Application.ScreenUpdating = False
oRow = 365
Srow = 3
sCol = 3
ws1.Activate
With ws1
lastrow = .Cells(Rows.Count, 1).End(xlUp).Row
lastcol = .Cells(1, Columns.Count).End(xlToLeft).Column
Set inRng = .Range(.Cells(1, 1), .Cells(lastrow, lastcol))
inArr = inRng
ReDim outarr(1 To 7, 1 To lastcol)
For c = 1 To lastcol
outarr(1, c) = .Cells(oRow, c)
Next c
For r = 2 To 7
outarr(r, 2) = .Cells(oRow + r - 1, 2)
For c = 3 To lastcol
outarr(r, c) = 0
Next c
Next r
' Set inRng = .Range(.Cells(oRow, 1), .Cells(oRow + 6, lastcol))
' outarr = inRng
Today = Format(Now(), "dd/mm/yyyy")
For c = sCol To UBound(inArr, 2)
nOK = 0
nPts = 0
For r = Srow To UBound(inArr, 1)
If inArr(r, 1) = "" Or inArr(r, 1) > Today Then Exit For
If inArr(r, c) <> "" Then
aCode = inArr(r, c)
Select Case aCode
Case "U"
pPoints = 1#
outarr(2, c) = outarr(2, c) + pPoints
Case "TQ"
pPoints = 0.25
outarr(3, c) = outarr(3, c) + pPoints
Case "TH"
pPoints = 0.5
outarr(4, c) = outarr(4, c) + pPoints
Case "L"
pPoints = 0.5
outarr(5, c) = outarr(5, c) + pPoints
End Select
If nOK >= 30 Then nPts = nPts + 1
nOK = 0
Else
nOK = nOK + 1
If nOK >= 30 Then
nPts = nPts + 1
nOK = 0
End If
End If
Next r
If nOK >= 30 Then
nPts = nPts + 1
nOK = 0
End If
outarr(7, c) = nPts
Next c
Set outRng = .Range(.Cells(oRow, 1), .Cells(oRow + 6, lastcol))
outRng = outarr
End With
Application.ScreenUpdating = True
End Sub
The macro results are in GREEN table: you will differences on "Perfect Points" compared with your results (Yellow table). My logic is 30 consecutive blanks which sample 3 has.
As it is now a yearly table, aren't previous points redundant? to be replaced by a "Points Balance" of difference between "Reward" and "Penalties"?
Bookmarks