Simple amendment needed in code

Ironman

Well-known Member
Joined
Jan 31, 2004
Messages
1,069
Office Version
  1. 365
Platform
  1. Windows
Hi

The below code was kindly provided to me some time ago.
Code:
Sub GlobalCommentsCell()
If ActiveSheet.Name <> "Training Log" Then Exit Sub
'If Selection.Value <> "" Then Exit Sub
  If Selection.Column <> 9 Then
    Ans = MsgBox("This routine will only work in Column I!" & vbNewLine & _
    "Would you like to move to column I now?", vbYesNo + vbExclamation, "Column Selection Error")
    If Ans = vbNo Then Exit Sub
    If Ans = vbYes Then
        Dim i As Long
        i = Selection.Row
            Cells(i, 9).Select
    End If
  End If
On Error GoTo Quit

With Selection

    .Interior.ColorIndex = 36
    .Interior.Pattern = xlSolid
    .Font.Name = "Wingdings"
    .Font.Size = 8
    .Font.ColorIndex = 15
    .Value = "¤"
    .Borders(xlEdgeLeft).LineStyle = xlContinuous
    .Borders(xlEdgeLeft).Weight = xlThin
    .Borders(xlEdgeLeft).ColorIndex = 15
    
    With Application
        .SendKeys "i"
        .Dialogs(xlDialogDataValidation).Show
    End With

Quit:
Err.Clear
End With
End Sub
All I'm looking for is for the below part of the code to be amended so it also runs (with the relevant amended message boxes) with Sheets "Indoor Bike" in Column K, "Outdoor Bike" in Column I and "Walking" in Column H
Code:
If ActiveSheet.Name <> "Training Log" Then Exit Sub
'If Selection.Value <> "" Then Exit Sub
  If Selection.Column <> 9 Then
    Ans = MsgBox("This routine will only work in Column I!" & vbNewLine & _
    "Would you like to move to column I now?", vbYesNo + vbExclamation, "Column Selection Error")

Many thanks
 
Last edited:

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.

Forum statistics

Threads
1,215,043
Messages
6,122,812
Members
449,095
Latest member
m_smith_solihull

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