Three subs are added
Sub ytdcal(temppos As String)
Dim exampleDate As Date
Dim i As Integer
Dim str2 As String
Dim result As Long
result = 0
Range(temppos).Select
str2 = """" & ActiveCell.Value & """"
Sheets("Summary").Select
If InStr((Range("$I$1").Value), "16") <> 0 Then
'MsgBox ("true")
exampleDate = DateValue(Range("$I$1").Value)
result = 0
For i = 4 To Month(exampleDate)
Range(temppos).Select
ActiveCell.Offset(0, 8).Select
ActiveCell.FormulaR1C1 = _
"=IFERROR(HLOOKUP(TEXT( " & Month(exampleDate) + (4 - i) & " *28,""mmm"") & ""-"" & TEXT(R1C9,""yy""),X!R4C4:R125C39,MATCH( " & str2 & ",X!R5C3:R125C3,0)+1,FALSE),0)"
result = result + CLng(ActiveCell.Value)
Next i
'MsgBox (result)
Range(temppos).Select
ActiveCell.Offset(0, 8).Select
ActiveCell.Value = result
'MsgBox (result)
Else
result = 0
exampleDate = DateValue(Range("$I$1").Value)
For i = 0 To (8 + Month(exampleDate))
Range(temppos).Select
ActiveCell.Offset(0, 8).Select
ActiveCell.FormulaR1C1 = _
"=IFERROR(HLOOKUP(TEXT((IF((TEXT(R1C9,""mm"")- " & i & " )
result = result + CLng(ActiveCell.Value)
Next i
Range(temppos).Select
ActiveCell.Offset(0, 8).Select
ActiveCell.Value = result
' MsgBox (result)
End If
End Sub
Sub ytdcom(temppos As String)
Dim exampleDate As Date
Dim i As Integer
Dim str2 As String
Dim result1 As Long
Dim result2 As Long
result1 = 0
result2 = 0
Range(temppos).Select
str2 = """" & ActiveCell.Value & """"
Sheets("Summary").Select
Range(temppos).Select
ActiveCell.Offset(0, 8).Select
result1 = ActiveCell.Value
'MsgBox ("true")
exampleDate = DateValue(Range("$I$1").Value)
'MsgBox (Year(exampleDate))
If (Year(exampleDate) - 1) = 2015 Then
exampleDate = DateValue(Range("$I$1").Value)
result = 0
For i = 4 To Month(exampleDate)
Range(temppos).Select
ActiveCell.Offset(0, 11).Select
ActiveCell.FormulaR1C1 = _
"=IFERROR(HLOOKUP(TEXT( " & Month(exampleDate) + (4 - i) & " *28,""mmm"") & ""-"" & TEXT(R1C9,""yy"")-1,X!R4C4:R125C39,MATCH( " & str2 & ",X!R5C3:R125C3,0)+1,FALSE),0)"
result2 = result2 + CLng(ActiveCell.Value)
Next i
Range(temppos).Select
ActiveCell.Offset(0, 11).Select
ActiveCell.Value = result2
Else
exampleDate = DateValue(Range("$I$1").Value)
For i = 0 To (8 + Month(exampleDate))
Range(temppos).Select
ActiveCell.Offset(0, 11).Select
ActiveCell.FormulaR1C1 = _
"=IFERROR(HLOOKUP(TEXT((IF((TEXT(R1C9,""mm"")- " & i & " )
result2 = result2 + CLng(ActiveCell.Value)
Next i
Range(temppos).Select
ActiveCell.Offset(0, 11).Select
ActiveCell.Value = result2
End If
Range(temppos).Select
ActiveCell.Offset(0, 11).Select
On Error Resume Next
ActiveCell.Value = (result1 / result2) - 1
' MsgBox (result)
End Sub
Sub ytdcomtotal(temppos As String)
Dim exampleDate As Date
Dim i As Integer
Dim str2 As String
Dim result1 As Long
Dim result2 As Long
result1 = 0
result2 = 0
Range(temppos).Select
str2 = """" & ActiveCell.Value & """"
Sheets("Summary").Select
Range(temppos).Select
ActiveCell.Offset(0, 8).Select
result1 = ActiveCell.Value
'MsgBox ("true")
exampleDate = DateValue(Range("$I$1").Value)
'MsgBox (Year(exampleDate))
If (Year(exampleDate) - 1) = 2015 Then
exampleDate = DateValue(Range("$I$1").Value)
result = 0
For i = 4 To Month(exampleDate)
Range(temppos).Select
ActiveCell.Offset(0, 11).Select
ActiveCell.FormulaR1C1 = _
"=IFERROR(HLOOKUP(TEXT( " & Month(exampleDate) + (4 - i) & " *28,""mmm"") & ""-"" & TEXT(R1C9,""yy"")-1,X!R4C4:R125C39,MATCH( " & str2 & ",X!R5C2:R125C2,0)+1,FALSE),0)"
result2 = result2 + CLng(ActiveCell.Value)
Next i
Range(temppos).Select
ActiveCell.Offset(0, 11).Select
ActiveCell.Value = result2
Else
exampleDate = DateValue(Range("$I$1").Value)
For i = 0 To (8 + Month(exampleDate))
Range(temppos).Select
ActiveCell.Offset(0, 11).Select
ActiveCell.FormulaR1C1 = _
"=IFERROR(HLOOKUP(TEXT((IF((TEXT(R1C9,""mm"")- " & i & " )
result2 = result2 + CLng(ActiveCell.Value)
Next i
Range(temppos).Select
ActiveCell.Offset(0, 11).Select
ActiveCell.Value = result2
End If
Range(temppos).Select
ActiveCell.Offset(0, 11).Select
On Error Resume Next
ActiveCell.Value = (result1 / result2) - 1
' MsgBox (result)
End Sub
Sourav Bhattacharya
Excel Vba Teacher
919748184075
No comments:
Post a Comment