I need a Vba Code to control if one of those cell is "True"
i have try with this code but it aint work
So help Need
i have try with this code but it aint work
Code:
Sub Copypast()'
' Copypast Makro
If Sheets("Copy").Range("D5").Text = "True" Then
Sheets("Copy").Select
Range("E5").Select
Selection.Copy
Sheets("Past").Select
Range("G2").Select
ActiveSheet.Paste
End If
End Sub
So help Need