I am using Office 365 on a Windows PC. I have an Excel workbook with two tabs - Call Log and Member List. There are at least three common columns on each tab - Member Name, ID # and DOB. ID #'s are unique.


When I enter an ID # in the Call Log column C there is an Index/Match formula that looks up the Member Name and DOB. This info appears in the green columns.
With four helper columns I can also find the ID # if the Member Name and DOB are provided. This info appears in the purple columns.
The workbook is Macro enabled. In the Call Log $H$1 is labeled ColNo and $I$1 is labeled RowNo. These cells display the active row and column numbers.
What I would like to do is create a macro for a button. When the button is selected the macro will do the following steps:
- Read the number in the RowNo cell (which will be the active row). This may be an unnecessary step.
- Select the cells in columns J, K and L in the active row.
- Copy the data.
- Go to column B in the active row.
- Paste Special, Values Only. This will overwrite the data in columns B, C and D in the active row.
I can't make it work with the Record Macro function. All help will be greatly appreciated.