how to fixed this

G

Guest

Guest
Sub SaveOrder()
Dim Cnt As Integer
Range("'Data'!A2").Offset(, Range("G1") * 2 - 1) = Range("G1")
For Cnt = 3 To 18
Range("'Data'!A" & Cnt).Offset(, Range("G1") * 2 - 1) = Range("D" & Cnt)
Range("'Data'!A" & Cnt).Offset(, Range("G1") * 2) = Range("H" & Cnt)
Next
End Sub

whne there is nothing is G1 i got a run tim,e error, how can i make it so if there is nothing in G1 a message will come up and ask u to put a number in G1?
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
You could try this. It checks that the value in G1 is not blank and that it's numeric.

Code:
Sub SaveOrder()
Dim Cnt As Integer

If (Range("G1") > 0) And IsNumeric(Range("G1")) Then
    Range("'Data'!A2").Offset(, Range("G1") * 2 - 1) = Range("G1")
    For Cnt = 3 To 18
        Range("'Data'!A" & Cnt).Offset(, Range("G1") * 2 - 1) = Range("D" & Cnt)
        Range("'Data'!A" & Cnt).Offset(, Range("G1") * 2) = Range("H" & Cnt)
    Next
Else
    MsgBox "G1 must contain a number"
End If
End Sub

HTH,
D
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,550
Members
449,088
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top