Sub AddCheckboxesBasedOnAdjacentCells
Sub AddCheckboxesBasedOnAdjacentCells
Dim i As Integer
Sheets("Sheet1").Activate
cellValue = Range("I4").Value
Exit Sub
End If
startTop = 0
Next cell
End Sub
Sub InsertRow()
rowNumber = 4
Rows(rowNumber).Insert Shift:=xlDown
End Sub
Sub CopyAndPasteVerticalToHorizontal()
Dim i As Integer
For i = 1 To sourceRange.Rows.Count
Next i
End Sub
Sub EnterFormulaInCell()
targetCell.Formula = "=IF($I4=0,"""",COUNTIF(P4:R4,""TRUE"")/$I4)"
targetCell.NumberFormat = "0%"
End Sub
Sub RunAllMacros()
CopyAndPasteVerticalToHorizontal
AddCheckboxes
EnterFormulaInCell
InsertRow
End Sub