#1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default Macro

How can i stop a workbook from running if i put main formulas in a macro of
the workbook so if some one disable the macros workbook won't run?
How do i write the code for Cell B6,G6:G61,J6,K6,L6.M6?

Thank Ken Calhoun
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default Macro

if the formulas don't exist unless the macro runs, then it shouldn't be a
problem. Of course, you would need to remove them when the workbook is
closed (and save the workbook after removing and before closing).

http://www.cpearson.com/excel/events.htm (for information on events such as
the workbook Open, BeforeSave, BeforeClose events.

Write the code to do what? saying "or Cell B6,G6:G61,J6,K6,L6.M6?" is
meainingless

if you wanted to sum B1:B5 in cell B6 your could

Range("B6").Value = Application.sum(Range("B1:B5"))
or to put in a formula
Range("B6").Formula = "=Sum(B1:B5)"

those are just examples of course. Not way to know what you actually want
to do.


All that said, trying to protect your workbook with code is usually pretty
easily defeated.
--
Regards,
Tom Ogilvy


"holy41" wrote:

How can i stop a workbook from running if i put main formulas in a macro of
the workbook so if some one disable the macros workbook won't run?
How do i write the code for Cell B6,G6:G61,J6,K6,L6.M6?

Thank Ken Calhoun

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default Macro

Thank Ken
The code work . But if i save the program they are saved in cells. So Could
you help me with the clearing the cell and then savieing to the the
workbook. I apperciate your help verry mutch. Thank Ken

"Tom Ogilvy" wrote:

if the formulas don't exist unless the macro runs, then it shouldn't be a
problem. Of course, you would need to remove them when the workbook is
closed (and save the workbook after removing and before closing).

http://www.cpearson.com/excel/events.htm (for information on events such as
the workbook Open, BeforeSave, BeforeClose events.

Write the code to do what? saying "or Cell B6,G6:G61,J6,K6,L6.M6?" is
meainingless

if you wanted to sum B1:B5 in cell B6 your could

Range("B6").Value = Application.sum(Range("B1:B5"))
or to put in a formula
Range("B6").Formula = "=Sum(B1:B5)"

those are just examples of course. Not way to know what you actually want
to do.


All that said, trying to protect your workbook with code is usually pretty
easily defeated.
--
Regards,
Tom Ogilvy


"holy41" wrote:

How can i stop a workbook from running if i put main formulas in a macro of
the workbook so if some one disable the macros workbook won't run?
How do i write the code for Cell B6,G6:G61,J6,K6,L6.M6?

Thank Ken Calhoun

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Macro recorded... tabs & file names changed, macro hangs Steve Excel Worksheet Functions 3 October 30th 09 11:41 AM
Macro Help Needed - Excel 2007 - Print Macro with Auto Sort Gavin Excel Worksheet Functions 0 May 17th 07 01:20 PM
how to count/sum by function/macro to get the number of record to do copy/paste in macro tango Excel Programming 1 October 15th 04 01:16 PM
macro to delete entire rows when column A is blank ...a quick macro vikram Excel Programming 4 May 3rd 04 08:45 PM
Start Macro / Stop Macro / Restart Macro Pete[_13_] Excel Programming 2 November 21st 03 05:04 PM


All times are GMT +1. The time now is 03:26 AM.

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

About Us

"It's about Microsoft Excel"