Hi,
Stuck writing the IF statement for the following code
Could someone help to rewrite this so that IF the string 2017-18 cannot be found, then sub in the value of 0 "zero" for cell T4 otherwise continue as is. Right now it kicks out an error.
Thanks in advance
Stuck writing the IF statement for the following code
Code:
'Total Wins
findrow = Range("A:A").Find("Career").Offset(0, 4).Select
ActiveCell.Copy
Range("T5").PasteSpecial
findrow2 = Range("A:A").Find("2017-18").Offset(0, 4).Select
ActiveCell.Copy
Range("T4").PasteSpecial
Range("T3").Value = Range("T5").Value - Range("T4").Value
Could someone help to rewrite this so that IF the string 2017-18 cannot be found, then sub in the value of 0 "zero" for cell T4 otherwise continue as is. Right now it kicks out an error.
Thanks in advance
Last edited: