Insert Row button

ERcoder

New Member
Joined
Jul 15, 2010
Messages
15
Hello all,
On our list of patients the staff goes through and enters the MD and charges (CPT) for each patient in the spreadsheet.

xcel.jpg


Can I add a button or link or something in column H that they can click to add a row below their current row for patients that have more than one charge?

As an added complication the MD# column has a vlookup formula to find the number when they enter the Dr name.

You guys are great help. I signed up for a Excel class at the Vo-tech so I hoepfully I can quit buggin you guys.
 

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.
You can use this to input a row below the active cell:

Code:
Sub insertrow()
ActiveCell.Select
Selection.Offset(1, 0).EntireRow.Insert
End Sub
Just insert a command button and assign this macro to it.

Can you post your Vlookup formula so I can add it to the macro?
 
Upvote 0

Forum statistics

Threads
1,224,613
Messages
6,179,904
Members
452,948
Latest member
Dupuhini

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