hartless43
New Member
- Joined
- Dec 28, 2022
- Messages
- 44
- Office Version
- 365
- Platform
- Windows
This will be easy for someone (not me) but the below Macro is run by a Macro Button. I would like for it to run automatically as soon as cell "G11" is 81. I think it can be done via Function or a WorkSheet_Change but I ain't that good at creating a function or whatever is needed to make it work. This is a Sudoku thing.
Thanks
VBA Code:
Sub ShowMistakes()
If Range("G11") = 81 Then
Range("W13") = "Yes" '/This is set to "NO" while playing Sudoku and Mistakes are not shown until "G11" is 81
End If
End Sub
Thanks