Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi i am using excel to print out cells from a form button using this macro
"ActiveSheet.Range("a8:b8").PrintOut preview:=False" is there a way i can modify it to count how many times the button is pressed and that amount shown in an adjecent cell please -- thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Mike, you could add a line of code to your macro like this, will add 1 to
sheet1 range A1 each time it is run Sheets("Sheet1").Range("A1").Value = _ Sheets("Sheet1").Range("A1").Value + 1 -- Paul B Always backup your data before trying something new Please post any response to the newsgroups so others can benefit from it Feedback on answers is always appreciated! Using Excel 2002 & 2003 "Mike" wrote in message ... Hi i am using excel to print out cells from a form button using this macro "ActiveSheet.Range("a8:b8").PrintOut preview:=False" is there a way i can modify it to count how many times the button is pressed and that amount shown in an adjecent cell please -- thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Hello Mike, Add this code to a VBA module in your workbook. It will place the number of times the button has been pushed in the cell to the right of the button and then call the print function. ______________________________ Public Sub ButtonCount() Dim Col As Long Dim Row As Long With ActiveSheet.Shapes(Application.Caller) Row = .TopLeftCell.Row Col = .BottomRightCell.Column End With With Cells(Row, Col) .Value = .Value + 1 End With ActiveSheet.Range("a8:b8").PrintOut preview:=False End Sub ______________________________ Sincerely, Leith Ross -- Leith Ross ------------------------------------------------------------------------ Leith Ross's Profile: http://www.excelforum.com/member.php...o&userid=18465 View this thread: http://www.excelforum.com/showthread...hreadid=508788 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
count and limit radio button selections | Excel Worksheet Functions | |||
limit and count radio button | Excel Discussion (Misc queries) | |||
how do i count how many people are working between two times in e | Excel Worksheet Functions | |||
How do I count the # of times a value reoccurs and plot it over ti | Charts and Charting in Excel | |||
Whats the function to count the total times a word is displayed | Excel Discussion (Misc queries) |