Go to same row by table header

SanjayGMusafir

Well-known Member
Joined
Sep 7, 2018
Messages
1,423
Office Version
  1. 2021
Platform
  1. MacOS
Hi Experts
Right now I'm using VBA that goes to an intended column in the same row. Can there be a way where, it can jump within same row to the intended column by table header name, as I keep adding or removing columns to the table and every time I do so, I have modify so many such vba(s)

Right now I'm using -
Code:
Sheets("Client").Select
    
Range("AB" & (ActiveCell.Row)).Select
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Is your table a structured table or just normal data?
 
Upvote 0
Fluff It's a structured Table

Just for Eg - I want to go to same row of active cell but in column with Header "Palms"

Thanks a lot ��
 
Upvote 0
FluffIt's a structured Table

Just for Eg - I want to go to same row of active cell but in column with Header "Palms" in table "Clients"

Thanks a lot
 
Upvote 0
How about
Code:
Sub Sanjay()
   Dim Rw As Long
   With Sheet12.ListObjects("Clients")
      Rw = ActiveCell.Row - .HeaderRowRange.Row
      .ListColumns("Palms").DataBodyRange.Cells(Rw, 1).Select
   End With
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,214,785
Messages
6,121,543
Members
449,038
Latest member
Guest1337

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