Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 82
Default Excel 2003 - Protecting Cells but allowing external data updates

I have a worksheet that is updated from an external data source. I also have
a VLOOKUP formula in my worksheet (allows users to select employee ID number
in a validation list) which after selecting populates their LName, FName and
MI from the external data source.

I want to be able to protect certain columns of data from the users (these
cells do not require the user to enter any data) but still allow external
data updates. What form of Protection (worksheet, workbook, or cell) do I
need to place on the worksheet? I will also be locking the "window" feature
so they cannot change the window sizing.

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 155
Default Excel 2003 - Protecting Cells but allowing external data updates

If you are using a macro to update you can set your protections then protect
the workbook/worksheet to enable them. Then add:

ActiveWorkbook.Unprotect Password:=""
ActiveSheet.Unprotect Password:=""

to the beginning of the update macro. Put your password in the ""'.

At the end of the macro add

ActiveWorkbook.Protect Password:=""
ActiveSheet.Protect Password:=""

again with your passord in the "".

Squeaky

"watermt" wrote:

I have a worksheet that is updated from an external data source. I also have
a VLOOKUP formula in my worksheet (allows users to select employee ID number
in a validation list) which after selecting populates their LName, FName and
MI from the external data source.

I want to be able to protect certain columns of data from the users (these
cells do not require the user to enter any data) but still allow external
data updates. What form of Protection (worksheet, workbook, or cell) do I
need to place on the worksheet? I will also be locking the "window" feature
so they cannot change the window sizing.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 82
Default Excel 2003 - Protecting Cells but allowing external data updat

I'm using an external data source and pulling information from that source
using a VLOOKUP function.

"Squeaky" wrote:

If you are using a macro to update you can set your protections then protect
the workbook/worksheet to enable them. Then add:

ActiveWorkbook.Unprotect Password:=""
ActiveSheet.Unprotect Password:=""

to the beginning of the update macro. Put your password in the ""'.

At the end of the macro add

ActiveWorkbook.Protect Password:=""
ActiveSheet.Protect Password:=""

again with your passord in the "".

Squeaky

"watermt" wrote:

I have a worksheet that is updated from an external data source. I also have
a VLOOKUP formula in my worksheet (allows users to select employee ID number
in a validation list) which after selecting populates their LName, FName and
MI from the external data source.

I want to be able to protect certain columns of data from the users (these
cells do not require the user to enter any data) but still allow external
data updates. What form of Protection (worksheet, workbook, or cell) do I
need to place on the worksheet? I will also be locking the "window" feature
so they cannot change the window sizing.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 155
Default Excel 2003 - Protecting Cells but allowing external data updat

Hi watermt,

I think I'm understanding you correctly now.
Using the worksheet protection should be the one you need. Workbook
protection won't protect individual cells from being modified. Just unlock
the cells you want others to be able to modify. It sounds like you may have a
drop down box, so you will need to unlock the cell the box links to also.

Squeaky


"watermt" wrote:

I'm using an external data source and pulling information from that source
using a VLOOKUP function.

"Squeaky" wrote:

If you are using a macro to update you can set your protections then protect
the workbook/worksheet to enable them. Then add:

ActiveWorkbook.Unprotect Password:=""
ActiveSheet.Unprotect Password:=""

to the beginning of the update macro. Put your password in the ""'.

At the end of the macro add

ActiveWorkbook.Protect Password:=""
ActiveSheet.Protect Password:=""

again with your passord in the "".

Squeaky

"watermt" wrote:

I have a worksheet that is updated from an external data source. I also have
a VLOOKUP formula in my worksheet (allows users to select employee ID number
in a validation list) which after selecting populates their LName, FName and
MI from the external data source.

I want to be able to protect certain columns of data from the users (these
cells do not require the user to enter any data) but still allow external
data updates. What form of Protection (worksheet, workbook, or cell) do I
need to place on the worksheet? I will also be locking the "window" feature
so they cannot change the window sizing.

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
Protecting cells with VBA (Excel 2003) nb0512 Excel Discussion (Misc queries) 5 July 17th 08 08:14 PM
protecting a sheet yet allowing for sorting, filtering, formatting [email protected] Excel Discussion (Misc queries) 0 June 28th 06 03:39 PM
Protecting Sheet and still allowing for sorting, filtering and formatting [email protected] Excel Discussion (Misc queries) 0 June 26th 06 05:19 PM
protecting formula cells in excel 2003 [email protected] Excel Discussion (Misc queries) 2 March 14th 06 07:24 PM
Protecting sheet disables import of extetrnal data in Excel 2003 MNord Excel Discussion (Misc queries) 0 August 31st 05 04:34 PM


All times are GMT +1. The time now is 07:04 AM.

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

About Us

"It's about Microsoft Excel"