Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default how do i create a new check box in excel?

I'm trying to create a new check box in excel. I'm able to place the box in
a cell, but not sure how to use the formula function. DO I have to create a
macro? The basic formula I'd like to use is if the box is checked, I want
another cell to read, "verified." In addition, I want the entire sheet
protected, other than the check box option. Can someone help? THis is my
first time trying this, so a step by step process would really help!!!
Thanks,
Marisol
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,688
Default how do i create a new check box in excel?

DO I have to create a macro?

No. Use a checkbox from the Forms toolbar.

When you click on the checkbox it is either checked or unchecked. When it is
checked it evaluates to TRUE and when it's unchecked it evaluates to FALSE.
You can base your formula on these values. You have to link the checkbox to
a cell and that linked cell will display the value of the checkbox, eithe
TRUE or FALSE. This linked cell can be hidden or disguised so that nobody
knows it's there.

For example, you can place the checkbox "in" cell A1 and also use cell A1 as
the linked cell. The checkbox is an OBJECT and objects don't actually reside
"in" cells, they "live" on top of the cell(s). So,

Right click any toolbar
Select Forms
Click the checkbox icon and navigate to the location you want to place it
then left click
Adjust the size and shape as desired
Now, right click the checkbox and a menu will appear
Select Format Control
Select the Control tab
Enter the cell link location, assume A1
Click the Protection tab, make sure Locked and Lock Text are checked
OK out
Now, right click on the checkbox again and select Edit Text and change the
caption if desired

Go ahead and try it out

Now, assuming A1 is the linked cell........
Select cell A1 and set the font color to be the same as the fill color

You're all set with the checkbox
Now, set up your formula. All you need to do is test whether the linked cell
equalls TRUE

The basic formula I'd like to use is if the box is checked, I want
another cell to read, "verified."


=IF(A1,"Verified","")

Now, set your sheet protection......

The linked cell has to be unprotected otherwise the checkbox won't work
properly.

Select the ENTIRE sheet
Goto FormatCellsProtection tab
Select Locked
OK
Now select the linked cell, A1
Goto FormatCellsProtection tab
Unselect Locked
OK

That's it. Now you can set your sheet protection.

Biff

"Marisol" wrote in message
...
I'm trying to create a new check box in excel. I'm able to place the box
in
a cell, but not sure how to use the formula function. DO I have to create
a
macro? The basic formula I'd like to use is if the box is checked, I want
another cell to read, "verified." In addition, I want the entire sheet
protected, other than the check box option. Can someone help? THis is my
first time trying this, so a step by step process would really help!!!
Thanks,
Marisol



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default how do i create a new check box in excel?

It worked. Thanks for your help. If the statement is false, I changed it to
say, "pending." How do I change the font color whenever the statement comes
out false?

The worksheet I'm working on will be used by others in my workplace. Once
the employees make corrections, they enter the date next to the exception on
the spreadsheet I created. I don't want them to access anything but entering
the date. This includes protecting the check box. I tried doing the sheet
protection for specific users/ranges; however, I'm afraid that I will forget
to protect the sheet again once I unprotect it and everyone will have access
to it. That's my main concern. Any suggestions? The worksheet is saved on
the public network at work.


"Biff" wrote:

DO I have to create a macro?


No. Use a checkbox from the Forms toolbar.

When you click on the checkbox it is either checked or unchecked. When it is
checked it evaluates to TRUE and when it's unchecked it evaluates to FALSE.
You can base your formula on these values. You have to link the checkbox to
a cell and that linked cell will display the value of the checkbox, eithe
TRUE or FALSE. This linked cell can be hidden or disguised so that nobody
knows it's there.

For example, you can place the checkbox "in" cell A1 and also use cell A1 as
the linked cell. The checkbox is an OBJECT and objects don't actually reside
"in" cells, they "live" on top of the cell(s). So,

Right click any toolbar
Select Forms
Click the checkbox icon and navigate to the location you want to place it
then left click
Adjust the size and shape as desired
Now, right click the checkbox and a menu will appear
Select Format Control
Select the Control tab
Enter the cell link location, assume A1
Click the Protection tab, make sure Locked and Lock Text are checked
OK out
Now, right click on the checkbox again and select Edit Text and change the
caption if desired

Go ahead and try it out

Now, assuming A1 is the linked cell........
Select cell A1 and set the font color to be the same as the fill color

You're all set with the checkbox
Now, set up your formula. All you need to do is test whether the linked cell
equalls TRUE

The basic formula I'd like to use is if the box is checked, I want
another cell to read, "verified."


=IF(A1,"Verified","")

Now, set your sheet protection......

The linked cell has to be unprotected otherwise the checkbox won't work
properly.

Select the ENTIRE sheet
Goto FormatCellsProtection tab
Select Locked
OK
Now select the linked cell, A1
Goto FormatCellsProtection tab
Unselect Locked
OK

That's it. Now you can set your sheet protection.

Biff

"Marisol" wrote in message
...
I'm trying to create a new check box in excel. I'm able to place the box
in
a cell, but not sure how to use the formula function. DO I have to create
a
macro? The basic formula I'd like to use is if the box is checked, I want
another cell to read, "verified." In addition, I want the entire sheet
protected, other than the check box option. Can someone help? THis is my
first time trying this, so a step by step process would really help!!!
Thanks,
Marisol




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,688
Default how do i create a new check box in excel?

How do I change the font color whenever the statement comes
out false?


Use conditional formatting.

Select the formula cell. I'll assume that cell is B1.
Goto the menu FormatConditional Formatting
Select Formula Is
Enter this formula in the little box on the right: (adjust the cell ref as
needed)

=B1="Pending"

Click the Format button
Select your desired style(s)
OK out

As far as something to remind you to protect the sheet......hmmm.....

I don't know! Maybe just put the word Protect in a prominent cell so that
you'll see it and it'll remind you.

Biff

"Marisol" wrote in message
...
It worked. Thanks for your help. If the statement is false, I changed it
to
say, "pending." How do I change the font color whenever the statement
comes
out false?

The worksheet I'm working on will be used by others in my workplace. Once
the employees make corrections, they enter the date next to the exception
on
the spreadsheet I created. I don't want them to access anything but
entering
the date. This includes protecting the check box. I tried doing the
sheet
protection for specific users/ranges; however, I'm afraid that I will
forget
to protect the sheet again once I unprotect it and everyone will have
access
to it. That's my main concern. Any suggestions? The worksheet is saved
on
the public network at work.


"Biff" wrote:

DO I have to create a macro?


No. Use a checkbox from the Forms toolbar.

When you click on the checkbox it is either checked or unchecked. When it
is
checked it evaluates to TRUE and when it's unchecked it evaluates to
FALSE.
You can base your formula on these values. You have to link the checkbox
to
a cell and that linked cell will display the value of the checkbox, eithe
TRUE or FALSE. This linked cell can be hidden or disguised so that nobody
knows it's there.

For example, you can place the checkbox "in" cell A1 and also use cell A1
as
the linked cell. The checkbox is an OBJECT and objects don't actually
reside
"in" cells, they "live" on top of the cell(s). So,

Right click any toolbar
Select Forms
Click the checkbox icon and navigate to the location you want to place it
then left click
Adjust the size and shape as desired
Now, right click the checkbox and a menu will appear
Select Format Control
Select the Control tab
Enter the cell link location, assume A1
Click the Protection tab, make sure Locked and Lock Text are checked
OK out
Now, right click on the checkbox again and select Edit Text and change
the
caption if desired

Go ahead and try it out

Now, assuming A1 is the linked cell........
Select cell A1 and set the font color to be the same as the fill color

You're all set with the checkbox
Now, set up your formula. All you need to do is test whether the linked
cell
equalls TRUE

The basic formula I'd like to use is if the box is checked, I want
another cell to read, "verified."


=IF(A1,"Verified","")

Now, set your sheet protection......

The linked cell has to be unprotected otherwise the checkbox won't work
properly.

Select the ENTIRE sheet
Goto FormatCellsProtection tab
Select Locked
OK
Now select the linked cell, A1
Goto FormatCellsProtection tab
Unselect Locked
OK

That's it. Now you can set your sheet protection.

Biff

"Marisol" wrote in message
...
I'm trying to create a new check box in excel. I'm able to place the
box
in
a cell, but not sure how to use the formula function. DO I have to
create
a
macro? The basic formula I'd like to use is if the box is checked, I
want
another cell to read, "verified." In addition, I want the entire sheet
protected, other than the check box option. Can someone help? THis is
my
first time trying this, so a step by step process would really help!!!
Thanks,
Marisol






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default how do i create a new check box in excel? - centering them

Similar to this...

I have multiple checkboxes on my spreadsheet that are each 'on' their own
cells. I'm trying to figure out how to center each one relative to its
cells. The best I can do is manually move it around on the cell with a
mouse. With several of them in a line, my line is a bit crooked.

Thoughts?


"Biff" wrote:

How do I change the font color whenever the statement comes
out false?


Use conditional formatting.

Select the formula cell. I'll assume that cell is B1.
Goto the menu FormatConditional Formatting
Select Formula Is
Enter this formula in the little box on the right: (adjust the cell ref as
needed)

=B1="Pending"

Click the Format button
Select your desired style(s)
OK out

As far as something to remind you to protect the sheet......hmmm.....

I don't know! Maybe just put the word Protect in a prominent cell so that
you'll see it and it'll remind you.

Biff

"Marisol" wrote in message
...
It worked. Thanks for your help. If the statement is false, I changed it
to
say, "pending." How do I change the font color whenever the statement
comes
out false?

The worksheet I'm working on will be used by others in my workplace. Once
the employees make corrections, they enter the date next to the exception
on
the spreadsheet I created. I don't want them to access anything but
entering
the date. This includes protecting the check box. I tried doing the
sheet
protection for specific users/ranges; however, I'm afraid that I will
forget
to protect the sheet again once I unprotect it and everyone will have
access
to it. That's my main concern. Any suggestions? The worksheet is saved
on
the public network at work.


"Biff" wrote:

DO I have to create a macro?

No. Use a checkbox from the Forms toolbar.

When you click on the checkbox it is either checked or unchecked. When it
is
checked it evaluates to TRUE and when it's unchecked it evaluates to
FALSE.
You can base your formula on these values. You have to link the checkbox
to
a cell and that linked cell will display the value of the checkbox, eithe
TRUE or FALSE. This linked cell can be hidden or disguised so that nobody
knows it's there.

For example, you can place the checkbox "in" cell A1 and also use cell A1
as
the linked cell. The checkbox is an OBJECT and objects don't actually
reside
"in" cells, they "live" on top of the cell(s). So,

Right click any toolbar
Select Forms
Click the checkbox icon and navigate to the location you want to place it
then left click
Adjust the size and shape as desired
Now, right click the checkbox and a menu will appear
Select Format Control
Select the Control tab
Enter the cell link location, assume A1
Click the Protection tab, make sure Locked and Lock Text are checked
OK out
Now, right click on the checkbox again and select Edit Text and change
the
caption if desired

Go ahead and try it out

Now, assuming A1 is the linked cell........
Select cell A1 and set the font color to be the same as the fill color

You're all set with the checkbox
Now, set up your formula. All you need to do is test whether the linked
cell
equalls TRUE

The basic formula I'd like to use is if the box is checked, I want
another cell to read, "verified."

=IF(A1,"Verified","")

Now, set your sheet protection......

The linked cell has to be unprotected otherwise the checkbox won't work
properly.

Select the ENTIRE sheet
Goto FormatCellsProtection tab
Select Locked
OK
Now select the linked cell, A1
Goto FormatCellsProtection tab
Unselect Locked
OK

That's it. Now you can set your sheet protection.

Biff

"Marisol" wrote in message
...
I'm trying to create a new check box in excel. I'm able to place the
box
in
a cell, but not sure how to use the formula function. DO I have to
create
a
macro? The basic formula I'd like to use is if the box is checked, I
want
another cell to read, "verified." In addition, I want the entire sheet
protected, other than the check box option. Can someone help? THis is
my
first time trying this, so a step by step process would really help!!!
Thanks,
Marisol








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,688
Default how do i create a new check box in excel? - centering them

Try this:

Select all the checkboxes by holding down the CTRL key and left clicking on
each of the checkboxes.

Open the DRAWING toolbar

In the left hand corner of the DRAWING toolbar you'll see DRAW and and
arrow. Click on that arrow. It will select all the checkboxes. Now, click
the DRAW button. Select Align or DistributeAlign Center. After you're done
click the arrow to deselect the checkboxes. Close the DRAWING toolbar.

Biff

"Bullfrog" wrote in message
...
Similar to this...

I have multiple checkboxes on my spreadsheet that are each 'on' their own
cells. I'm trying to figure out how to center each one relative to its
cells. The best I can do is manually move it around on the cell with a
mouse. With several of them in a line, my line is a bit crooked.

Thoughts?


"Biff" wrote:

How do I change the font color whenever the statement comes
out false?


Use conditional formatting.

Select the formula cell. I'll assume that cell is B1.
Goto the menu FormatConditional Formatting
Select Formula Is
Enter this formula in the little box on the right: (adjust the cell ref
as
needed)

=B1="Pending"

Click the Format button
Select your desired style(s)
OK out

As far as something to remind you to protect the sheet......hmmm.....

I don't know! Maybe just put the word Protect in a prominent cell so that
you'll see it and it'll remind you.

Biff

"Marisol" wrote in message
...
It worked. Thanks for your help. If the statement is false, I changed
it
to
say, "pending." How do I change the font color whenever the statement
comes
out false?

The worksheet I'm working on will be used by others in my workplace.
Once
the employees make corrections, they enter the date next to the
exception
on
the spreadsheet I created. I don't want them to access anything but
entering
the date. This includes protecting the check box. I tried doing the
sheet
protection for specific users/ranges; however, I'm afraid that I will
forget
to protect the sheet again once I unprotect it and everyone will have
access
to it. That's my main concern. Any suggestions? The worksheet is
saved
on
the public network at work.


"Biff" wrote:

DO I have to create a macro?

No. Use a checkbox from the Forms toolbar.

When you click on the checkbox it is either checked or unchecked. When
it
is
checked it evaluates to TRUE and when it's unchecked it evaluates to
FALSE.
You can base your formula on these values. You have to link the
checkbox
to
a cell and that linked cell will display the value of the checkbox,
eithe
TRUE or FALSE. This linked cell can be hidden or disguised so that
nobody
knows it's there.

For example, you can place the checkbox "in" cell A1 and also use cell
A1
as
the linked cell. The checkbox is an OBJECT and objects don't actually
reside
"in" cells, they "live" on top of the cell(s). So,

Right click any toolbar
Select Forms
Click the checkbox icon and navigate to the location you want to place
it
then left click
Adjust the size and shape as desired
Now, right click the checkbox and a menu will appear
Select Format Control
Select the Control tab
Enter the cell link location, assume A1
Click the Protection tab, make sure Locked and Lock Text are checked
OK out
Now, right click on the checkbox again and select Edit Text and change
the
caption if desired

Go ahead and try it out

Now, assuming A1 is the linked cell........
Select cell A1 and set the font color to be the same as the fill color

You're all set with the checkbox
Now, set up your formula. All you need to do is test whether the
linked
cell
equalls TRUE

The basic formula I'd like to use is if the box is checked, I want
another cell to read, "verified."

=IF(A1,"Verified","")

Now, set your sheet protection......

The linked cell has to be unprotected otherwise the checkbox won't
work
properly.

Select the ENTIRE sheet
Goto FormatCellsProtection tab
Select Locked
OK
Now select the linked cell, A1
Goto FormatCellsProtection tab
Unselect Locked
OK

That's it. Now you can set your sheet protection.

Biff

"Marisol" wrote in message
...
I'm trying to create a new check box in excel. I'm able to place
the
box
in
a cell, but not sure how to use the formula function. DO I have to
create
a
macro? The basic formula I'd like to use is if the box is checked,
I
want
another cell to read, "verified." In addition, I want the entire
sheet
protected, other than the check box option. Can someone help? THis
is
my
first time trying this, so a step by step process would really
help!!!
Thanks,
Marisol








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
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? Richard Excel Discussion (Misc queries) 2 May 13th 23 11:46 AM
How do I remove an unwanted check box from an Excel spread sheet? Brondero Excel Discussion (Misc queries) 6 September 8th 06 02:42 AM
Create a Word Table from a Excel Macro Silvia Excel Discussion (Misc queries) 0 September 7th 06 12:34 AM
Use Excel 2003 XML Map feature to create an SOAP XML file? [email protected] Excel Discussion (Misc queries) 0 September 4th 06 03:21 PM
Running Excel 2000 VBA Application on Excel 2003 Excel Worksheet Functions 0 August 8th 06 06:04 PM


All times are GMT +1. The time now is 04:18 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"