Vba else if

bluegold

Active Member
Joined
Jun 21, 2009
Messages
279
Hi guys,

I have the following VBA script that doesn't quite work for some reason.
Basically I want the script to place the cursor at the 1st free cell of either of my 3 columns depending on which columns have more rows of data. Is there any obvious error in my code? See what happens is if lr1 = lr 3 it sometimes randomly (not all the time) places the cursor at the end of column D instead of A and also if lr3 < lr2 it sometimes places the cursor at end of column A when it should be column AP, it does my head in! Each time I run the macro I seem to get a different result :mad:

Sub Update_Cursor()


Dim lr1 As Long
Dim lr2 As Long
Dim lr3 As Long
Dim ws As Worksheet



lr1 = Cells(Rows.Count, "A").End(xlUp).Row
lr2 = Cells(Rows.Count, "D").End(xlUp).Row
lr3 = Cells(Rows.Count, "AP").End(xlUp).Row


Sheets("a").Select
If lr1 = lr3 Then
Range("A2").Select
Selection.End(xlDown).Select
ActiveCell.Offset(1, 0).Select
ElseIf lr3 < lr2 Then
Range("AP2").Select
Selection.End(xlDown).Select
ActiveCell.Offset(1, 0).Select
Else
Range("D2").Select
Selection.End(xlDown).Select
ActiveCell.Offset(1, 0).Select
End If

End Sub
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Try moving the sheets select line before you assign values to your lr variables.
At the moment the lr variables will be calculated on the active sheet not sheet "a"
 
Upvote 0
You've already determined the last row, just go to it.

Code:
lr1 = Cells(Rows.Count, "A").End(xlUp).Row
lr2 = Cells(Rows.Count, "D").End(xlUp).Row
lr3 = Cells(Rows.Count, "J").End(xlUp).Row


If lr1 = lr3 Then
  Range("A" & lr1).Select
ElseIf lr3 < lr2 Then
  Range("AP" & lr2).Select
Else
  Range("D" & lr3).Select
End If


ActiveCell.Offset(1, 0).Select   'next row
 
Upvote 0
Maybe this

Code:
Sub Update_Cursor()
 Dim lr1 As Long
 Dim lr2 As Long
 Dim lr3 As Long
 Dim ws As Worksheet
Sheets("a").Select
 lr1 = Cells(Rows.Count, "A").End(xlUp).Row
 lr2 = Cells(Rows.Count, "D").End(xlUp).Row
 lr3 = Cells(Rows.Count, "AP").End(xlUp).Row
 
    If lr1 > lr2 And lr1 > lr3 Then
        Range("A" & Rows.Count).End(xlUp)(2).Select
    ElseIf lr3 > lr2 And lr3 > lr1 Then
        Range("AP" & Rows.Count).End(xlUp)(2).Select
    ElseIf lr2 > lr1 And lr2 > lr3 Then
        Range("D" & Rows.Count).End(xlUp)(2).Select
    Else
        Rande("A" & Rows.Count).End(xlUp)(2).Select
    End If
 End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,472
Messages
6,125,005
Members
449,203
Latest member
Daymo66

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