A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

How can I put these 2 VBA codes Together?



 
 
Thread Tools Display Modes
  #1  
Old June 15th, 2004, 09:21 AM
rdvance
external usenet poster
 
Posts: n/a
Default How can I put these 2 VBA codes Together?

Sub ClickFirst()
With ActiveSheet.Buttons(Application.Caller).TopLeftCel l
If .Column 8 Then Cells(.Row - 6, .Column - 8).Select
End With
End Sub

Sub BotWorm()


With ActiveCell.Offset(1, 0).End(xlDown).Offset(1, 0)
.Value = Format(Date, "d mmm ")
.Offset(0, 1).Value = "VETERINARY CARE / BOT & WORM DRENCH"
.Offset(0, 7).Value = "30.00"
End With


End Sub


---
Message posted from http://www.ExcelForum.com/

  #2  
Old June 15th, 2004, 03:06 PM
Chip Pearson
external usenet poster
 
Posts: n/a
Default How can I put these 2 VBA codes Together?

Just call the BotWorm macro from within the ClickFirst macro.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



"rdvance " wrote in
message ...
Sub ClickFirst()
With ActiveSheet.Buttons(Application.Caller).TopLeftCel l
If .Column 8 Then Cells(.Row - 6, .Column - 8).Select
End With
End Sub

Sub BotWorm()


With ActiveCell.Offset(1, 0).End(xlDown).Offset(1, 0)
Value = Format(Date, "d mmm ")
Offset(0, 1).Value = "VETERINARY CARE / BOT & WORM DRENCH"
Offset(0, 7).Value = "30.00"
End With


End Sub


---
Message posted from http://www.ExcelForum.com/



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 03:42 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.