Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
abfabrob
 
Posts: n/a
Default Making cells compulsary to fill in on a worksheet

I am creating an application form to be used electronically. I want to make
sure that users fill in certain fields (cells). How can I make Excel tell the
user that when they click on 'close', they can not close or save the file
until all fields are populated? This is driving me mad!!!!
  #2   Report Post  
Jason Morin
 
Posts: n/a
Default

J.E. McGimpsey posted some code to do just what you're
asking:

http://tinyurl.com/3kaos

HTH
Jason
Atlanta, GA

-----Original Message-----
I am creating an application form to be used

electronically. I want to make
sure that users fill in certain fields (cells). How can

I make Excel tell the
user that when they click on 'close', they can not close

or save the file
until all fields are populated? This is driving me

mad!!!!
.

  #3   Report Post  
abfabrob
 
Posts: n/a
Default

I don't understand the instructions! Sorry to bother you. Can you help?

"Jason Morin" wrote:

J.E. McGimpsey posted some code to do just what you're
asking:

http://tinyurl.com/3kaos

HTH
Jason
Atlanta, GA

-----Original Message-----
I am creating an application form to be used

electronically. I want to make
sure that users fill in certain fields (cells). How can

I make Excel tell the
user that when they click on 'close', they can not close

or save the file
until all fields are populated? This is driving me

mad!!!!
.


  #4   Report Post  
Jason Morin
 
Posts: n/a
Default

Press ALT+F11, and double-click on the "ThisWorkbook"
module underneath your workbook. It'll look like "VBA
Project..." Paste in all the code. Press ALT+Q to return
to Excel.

-----Original Message-----
I don't understand the instructions! Sorry to bother

you. Can you help?

"Jason Morin" wrote:

J.E. McGimpsey posted some code to do just what you're
asking:

http://tinyurl.com/3kaos

HTH
Jason
Atlanta, GA

-----Original Message-----
I am creating an application form to be used

electronically. I want to make
sure that users fill in certain fields (cells). How

can
I make Excel tell the
user that when they click on 'close', they can not

close
or save the file
until all fields are populated? This is driving me

mad!!!!
.


.

  #5   Report Post  
abfabrob
 
Posts: n/a
Default

You're gonna hate me... How do I define exactly which fields need filling in
before the doc can be saved? I have never seen anything like that formula. I
am new to all this (though I guess that's pretty clear!)

Thanks for your help though.

Rob,
Teesside,
UK

"Jason Morin" wrote:

Press ALT+F11, and double-click on the "ThisWorkbook"
module underneath your workbook. It'll look like "VBA
Project..." Paste in all the code. Press ALT+Q to return
to Excel.

-----Original Message-----
I don't understand the instructions! Sorry to bother

you. Can you help?

"Jason Morin" wrote:

J.E. McGimpsey posted some code to do just what you're
asking:

http://tinyurl.com/3kaos

HTH
Jason
Atlanta, GA

-----Original Message-----
I am creating an application form to be used
electronically. I want to make
sure that users fill in certain fields (cells). How

can
I make Excel tell the
user that when they click on 'close', they can not

close
or save the file
until all fields are populated? This is driving me
mad!!!!
.


.




  #6   Report Post  
Jason Morin
 
Posts: n/a
Default

Where it reads:

Sheets("Sheet1").Range("A1, B2")

in the macro, change the sheet name and cell references
to what it needs to be. You can add more cell references,
just make sure to include commas. For example,

..Range("A1,B2,C4,G17,P100")

Jason
-----Original Message-----
You're gonna hate me... How do I define exactly which

fields need filling in
before the doc can be saved? I have never seen anything

like that formula. I
am new to all this (though I guess that's pretty clear!)

Thanks for your help though.

Rob,
Teesside,
UK

"Jason Morin" wrote:

Press ALT+F11, and double-click on the "ThisWorkbook"
module underneath your workbook. It'll look like "VBA
Project..." Paste in all the code. Press ALT+Q to

return
to Excel.

-----Original Message-----
I don't understand the instructions! Sorry to bother

you. Can you help?

"Jason Morin" wrote:

J.E. McGimpsey posted some code to do just what

you're
asking:

http://tinyurl.com/3kaos

HTH
Jason
Atlanta, GA

-----Original Message-----
I am creating an application form to be used
electronically. I want to make
sure that users fill in certain fields (cells).

How
can
I make Excel tell the
user that when they click on 'close', they can not

close
or save the file
until all fields are populated? This is driving me
mad!!!!
.


.


.

  #7   Report Post  
abfabrob
 
Posts: n/a
Default

I haven't got a clue. It brings up the message "Compile error: User-defined
type not defined" This may as well be in Hebrew!

But thanks again for the help,

Rob.

"Jason Morin" wrote:

Where it reads:

Sheets("Sheet1").Range("A1, B2")

in the macro, change the sheet name and cell references
to what it needs to be. You can add more cell references,
just make sure to include commas. For example,

..Range("A1,B2,C4,G17,P100")

Jason
-----Original Message-----
You're gonna hate me... How do I define exactly which

fields need filling in
before the doc can be saved? I have never seen anything

like that formula. I
am new to all this (though I guess that's pretty clear!)

Thanks for your help though.

Rob,
Teesside,
UK

"Jason Morin" wrote:

Press ALT+F11, and double-click on the "ThisWorkbook"
module underneath your workbook. It'll look like "VBA
Project..." Paste in all the code. Press ALT+Q to

return
to Excel.

-----Original Message-----
I don't understand the instructions! Sorry to bother
you. Can you help?

"Jason Morin" wrote:

J.E. McGimpsey posted some code to do just what

you're
asking:

http://tinyurl.com/3kaos

HTH
Jason
Atlanta, GA

-----Original Message-----
I am creating an application form to be used
electronically. I want to make
sure that users fill in certain fields (cells).

How
can
I make Excel tell the
user that when they click on 'close', they can not
close
or save the file
until all fields are populated? This is driving me
mad!!!!
.


.


.


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

Post what you've tried so far. It maybe easier to correct that way.

abfabrob wrote:

I haven't got a clue. It brings up the message "Compile error: User-defined
type not defined" This may as well be in Hebrew!

But thanks again for the help,

Rob.

"Jason Morin" wrote:

Where it reads:

Sheets("Sheet1").Range("A1, B2")

in the macro, change the sheet name and cell references
to what it needs to be. You can add more cell references,
just make sure to include commas. For example,

..Range("A1,B2,C4,G17,P100")

Jason
-----Original Message-----
You're gonna hate me... How do I define exactly which

fields need filling in
before the doc can be saved? I have never seen anything

like that formula. I
am new to all this (though I guess that's pretty clear!)

Thanks for your help though.

Rob,
Teesside,
UK

"Jason Morin" wrote:

Press ALT+F11, and double-click on the "ThisWorkbook"
module underneath your workbook. It'll look like "VBA
Project..." Paste in all the code. Press ALT+Q to

return
to Excel.

-----Original Message-----
I don't understand the instructions! Sorry to bother
you. Can you help?

"Jason Morin" wrote:

J.E. McGimpsey posted some code to do just what

you're
asking:

http://tinyurl.com/3kaos

HTH
Jason
Atlanta, GA

-----Original Message-----
I am creating an application form to be used
electronically. I want to make
sure that users fill in certain fields (cells).

How
can
I make Excel tell the
user that when they click on 'close', they can not
close
or save the file
until all fields are populated? This is driving me
mad!!!!
.


.


.



--

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
Need ability to leave certain cells of an worksheet editable. Tyler Excel Discussion (Misc queries) 3 January 26th 05 05:19 AM
Protecting specific cells in a worksheet. GaryS Excel Worksheet Functions 2 January 6th 05 04:47 PM
Heps to design Locked/Unlocked cells in protected worksheet Kevin Excel Discussion (Misc queries) 0 December 30th 04 07:09 AM
Identifying the Active Fill Color Steve Conary Excel Discussion (Misc queries) 3 December 9th 04 04:45 AM
How can I merge unlocked cells in a worksheet that has been protec NeedMergeHelp Excel Discussion (Misc queries) 2 December 7th 04 01:20 AM


All times are GMT +1. The time now is 05:55 PM.

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"