ipbr21054
Well-known Member
- Joined
- Nov 16, 2010
- Messages
- 5,699
- Office Version
- 2007
- Platform
- Windows
Hi,
The code in use is shown below.
Please can you explain why or what this part refers or does warning = MsgBox(Range("A6").Value
I press the button,i am asked the question,the range in question that will be changed to 0 is C1:F17 so im lost as to why A6 is even there.....
The code in use is shown below.
Please can you explain why or what this part refers or does warning = MsgBox(Range("A6").Value
I press the button,i am asked the question,the range in question that will be changed to 0 is C1:F17 so im lost as to why A6 is even there.....
Code:
Sub zero()'
' zero Macro
'
'
Dim warning
warning = MsgBox(Range("A6").Value & "Are You Sure You Wish To Zero All The Cells ?", vbQuestion + vbYesNo, "Warning This Will Delete The Cell Info")
If warning = vbNo Then Exit Sub
Range("D1", "D17") = "0"
Range("F1", "F17") = "0"
Range("C1:F17").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent5
.TintAndShade = 0.599993896298105
.PatternTintAndShade = 0
End With
Range("A13").Select
End Sub