Macro problem

Vokes7791

New Member
Joined
Jun 20, 2012
Messages
10
Hi All,

Can anyone help me here?

I have the below code, the macro enable the 'cursor' to return to D4 but would like the code to also send the 'cursor' to Sheet1 cell B7 if B6 has text in. Is this possible?


Private Sub CommandButton1_Click()
With Range("D4:D14")
.Copy
Sheets("Sheet1").Range("B6:k6").PasteSpecial Paste:=xlPasteAll, Transpose:=True
.ClearContents
Range("d4").Select
End With
End Sub
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Try
Code:
Private Sub CommandButton1_Click()

With Range("D4:D14")
  .Copy
  Sheets("Sheet1").Range("B6").PasteSpecial Paste:=xlPasteAll, Transpose:=True
  .ClearContents
End With
Range("D4").Select

If Not IsEmpty(Range("B6")) Then
   With Sheets("Sheet1")
      .Select
      .Range("B7").Select
  End With
End If

End Sub
 
Upvote 0
Is B6 truly empty or does it contain non-visible characters (e.g. spaces). Instead, try:
Code:
Private Sub CommandButton1_Click()

With Range("D4:D14")
  .Copy
  Sheets("Sheet1").Range("B6").PasteSpecial Paste:=xlPasteAll, Transpose:=True
  .ClearContents
End With
Range("D4").Select

If Len(ActiveSheet.Range("B6")) < 1 Then
  With Sheets("Sheet1")
    .Select
    .Range("B7").Select
  End With
End If

End Sub
 
Upvote 0

Forum statistics

Threads
1,219,162
Messages
6,146,660
Members
450,706
Latest member
LGVBPP

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