我有一个出勤电子表格,我需要对一行进行求和,并在最后一列中有总数。每行代表一名员工,每列代表一个月中的一天。我使用 VBA 的原因是因为某些日期列将包含文本,例如 Tardy 的 TA,如果 TA 存在于该范围内的一个或多个单元格中,则需要在总数中添加 0.5。
我只能填充第一行,但不能填充它下面的行。我猜这是因为我没有正确设置我的范围。这是我到目前为止的代码:
Dim wsJAN As Worksheet 'Used to reference the sheet by its TAB name in the WB
Dim LastRow As Long 'Last used row on sheet
Dim tDays As Range 'Total # of days the employee has actually worked
Dim cDays As Range 'Current # of days the employee should have worked
Dim rowEmployee As Range 'Used to define the columns to be used to when adding attendance for each employee row
Dim rCell As Range
LastRow = Cells.Find(What:="*", After:=[A3], SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
Application.ScreenUpdating = False
Set wsJAN = ThisWorkbook.Sheets("JAN")
Set tDays = wsJAN.Range("AG3")
Set cDays = wsJAN.Range("AH3")
Set rowEmployee = wsJAN.Range("B3:AF3")
tDays = "=SUM(B3:AF3)"
cDays = "=SUM(B3:AF3)"
For Each rCell In rowEmployee
If rCell.Value = "TA" Then
tDays = tDays + 0.5 ' Add only a half day to the # of days the employee has worked in Column AG if tardy.
cDays = cDays + 1 ' Add a whole day to current days worked in Column AH if employee is tardy.
End If
Next
Application.ScreenUpdating = True
我什至尝试在 For Each 循环周围使用 For i = 1 To LastRow Step 1 并 Do.....Loop until LastRow 没有任何成功。我的行总是从第 3 行开始,所以我需要一些类似的东西:
AG3 =SUM(B3:AF3)
AG4 =SUM(B4:AF4)
一直到最后一行