#1   Report Post  
Debbie
 
Posts: n/a
Default protected form

Is there a way to only save a protected form & not the background data? In
Excel, page 1 is the form w/drop downs, page 2 is the drop downs listed. If
you save the entire document it is 1 gig. We only need to save the 1st page
to forward to numerous people. Tks!
  #2   Report Post  
Dave Peterson
 
Posts: n/a
Default

Start a new workbook (with a single sheet).

Edit|Copy the cells in the protected form
edit|Paste special|values in the new workbook/worksheet

Save that new workbook and email it out.


Debbie wrote:

Is there a way to only save a protected form & not the background data? In
Excel, page 1 is the form w/drop downs, page 2 is the drop downs listed. If
you save the entire document it is 1 gig. We only need to save the 1st page
to forward to numerous people. Tks!


--

Dave Peterson
  #3   Report Post  
Debbie
 
Posts: n/a
Default

Dave
Thank for your reply. The only problem with this solution is we are dealing
with supervisors on up and need it to be as simple as possible.

"Dave Peterson" wrote:

Start a new workbook (with a single sheet).

Edit|Copy the cells in the protected form
edit|Paste special|values in the new workbook/worksheet

Save that new workbook and email it out.


Debbie wrote:

Is there a way to only save a protected form & not the background data? In
Excel, page 1 is the form w/drop downs, page 2 is the drop downs listed. If
you save the entire document it is 1 gig. We only need to save the 1st page
to forward to numerous people. Tks!


--

Dave Peterson

  #4   Report Post  
Dave Peterson
 
Posts: n/a
Default

Put a button from the forms toolbar on the worksheet that has this macro
attached.

Option Explicit
Sub testme()
Dim curWks As Worksheet
Dim newWks As Worksheet

Set curWks = ActiveSheet
Set newWks = Workbooks.Add(1).Worksheets(1)

With curWks
.Range("a1", .Cells.SpecialCells(xlCellTypeLastCell)).Copy
End With

With newWks
With .Range("a1")
.PasteSpecial Paste:=xlPasteValues
.PasteSpecial Paste:=xlPasteFormats
End With
With .UsedRange
.Columns.AutoFit
.Rows.AutoFit
End With
End With

newWks.Parent.Activate

Application.Dialogs(xlDialogSaveAs).Show

End Sub

Debbie wrote:

Dave
Thank for your reply. The only problem with this solution is we are dealing
with supervisors on up and need it to be as simple as possible.

"Dave Peterson" wrote:

Start a new workbook (with a single sheet).

Edit|Copy the cells in the protected form
edit|Paste special|values in the new workbook/worksheet

Save that new workbook and email it out.


Debbie wrote:

Is there a way to only save a protected form & not the background data? In
Excel, page 1 is the form w/drop downs, page 2 is the drop downs listed. If
you save the entire document it is 1 gig. We only need to save the 1st page
to forward to numerous people. Tks!


--

Dave Peterson


--

Dave Peterson
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
Is there a way to convert a EXCEL form into a WORD form? Carole O Excel Discussion (Misc queries) 1 April 27th 05 10:13 PM
Data Form Deletions CyberTaz Excel Discussion (Misc queries) 1 April 26th 05 01:25 PM
CELL PROTECTED IN 2000, UNPROTECTED IN 2003 Carole O Excel Worksheet Functions 0 January 20th 05 07:17 PM
Trying to delete form border, and it deletes all borders PeterM Excel Discussion (Misc queries) 11 January 3rd 05 03:36 PM
Protected cells -automatically format to a different color Fred Evans Excel Discussion (Misc queries) 9 December 3rd 04 12:59 PM


All times are GMT +1. The time now is 01:04 PM.

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"