Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default how do i simply add a check box to a cell?

hi! bit of a novice question here...

i'd like to add a check box to an individual cell, so any time i move the
cell or alter it, the check box goes with it. i'd love to be able to format
the box as part of the cell (like align center or right justify). i don't
want the check box to do anything; i just want to be able to click it for a
check mark. from what i've seen, i'm not looking for an activeX control or
form, because those just float and i have to move them around or delete them
manually. any ideas? thanks!
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default how do i simply add a check box to a cell?

How about an (easy) alternative:

Select the range
Format|cells|number tab|custom category
In the "type:" box, put this:
alt-0252;alt-0252;alt-0252;alt-0252

But hit and hold the alt key while you're typing the 0252 from the numeric
keypad.

It should look something like this when you're done.
ü;ü;ü;ü
(umlaut over the lower case u separated by semicolons)

And format that range of cells as Wingdings.

Now, no matter what you type (spacebar, x, anyoldtextatall), you'll see a check
mark.

Hit the delete key on the keyboard to clear the cell.

If you have to use that "checkmark" in later formulas:

=if(a1="","no checkmark","Yes checkmark")

hadi wrote:

hi! bit of a novice question here...

i'd like to add a check box to an individual cell, so any time i move the
cell or alter it, the check box goes with it. i'd love to be able to format
the box as part of the cell (like align center or right justify). i don't
want the check box to do anything; i just want to be able to click it for a
check mark. from what i've seen, i'm not looking for an activeX control or
form, because those just float and i have to move them around or delete them
manually. any ideas? thanks!


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default how do i simply add a check box to a cell?

thanks dave! but i'm on a laptop without a numeric keypad, and i get beeps
but no results when i try to enter alt-0252 from the main keyboard. if i just
insert the u-with-umlaut characters using the insert menu, that doesn't have
the same results you describe. do you know of another alternative? i should
also mention that i'm doing this form for end users who may not understand
when i tell them to just enter any type in the box to show the box as
clicked.

is there really no way to just insert a checkbox into a cell? :)

thanks again!


"Dave Peterson" wrote:

How about an (easy) alternative:

Select the range
Format|cells|number tab|custom category
In the "type:" box, put this:
alt-0252;alt-0252;alt-0252;alt-0252

But hit and hold the alt key while you're typing the 0252 from the numeric
keypad.

It should look something like this when you're done.
ü;ü;ü;ü
(umlaut over the lower case u separated by semicolons)

And format that range of cells as Wingdings.

Now, no matter what you type (spacebar, x, anyoldtextatall), you'll see a check
mark.

Hit the delete key on the keyboard to clear the cell.

If you have to use that "checkmark" in later formulas:

=if(a1="","no checkmark","Yes checkmark")

hadi wrote:

hi! bit of a novice question here...

i'd like to add a check box to an individual cell, so any time i move the
cell or alter it, the check box goes with it. i'd love to be able to format
the box as part of the cell (like align center or right justify). i don't
want the check box to do anything; i just want to be able to click it for a
check mark. from what i've seen, i'm not looking for an activeX control or
form, because those just float and i have to move them around or delete them
manually. any ideas? thanks!


--

Dave Peterson

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default how do i simply add a check box to a cell?

I don't use a laptop, but lots of times, there's an Fn key that allows you to
re-purpose other keys. But if you don't want to take the time to find that key,
you could try this:

Put this in an unused cell
=CHAR(252)&";"&CHAR(252)&";"&CHAR(252)&";"&CHAR(25 2)
Edit|copy
Edit|Paste special|Values
You should see:
ü;ü;ü;ü

Now select those 7 characters from the formulabar and hit ctrl-c (to copy them).
(then hit escape to get out of edit mode)

Now select the range to format.
Format|Cells|Number Tab|Custom category
Erase whatever you see in the Type box
and hit ctrl-v to paste those 7 characters in that box.

And remember to format that range with the Wingdings font.

hadi wrote:

thanks dave! but i'm on a laptop without a numeric keypad, and i get beeps
but no results when i try to enter alt-0252 from the main keyboard. if i just
insert the u-with-umlaut characters using the insert menu, that doesn't have
the same results you describe. do you know of another alternative? i should
also mention that i'm doing this form for end users who may not understand
when i tell them to just enter any type in the box to show the box as
clicked.

is there really no way to just insert a checkbox into a cell? :)

thanks again!

"Dave Peterson" wrote:

How about an (easy) alternative:

Select the range
Format|cells|number tab|custom category
In the "type:" box, put this:
alt-0252;alt-0252;alt-0252;alt-0252

But hit and hold the alt key while you're typing the 0252 from the numeric
keypad.

It should look something like this when you're done.
ü;ü;ü;ü
(umlaut over the lower case u separated by semicolons)

And format that range of cells as Wingdings.

Now, no matter what you type (spacebar, x, anyoldtextatall), you'll see a check
mark.

Hit the delete key on the keyboard to clear the cell.

If you have to use that "checkmark" in later formulas:

=if(a1="","no checkmark","Yes checkmark")

hadi wrote:

hi! bit of a novice question here...

i'd like to add a check box to an individual cell, so any time i move the
cell or alter it, the check box goes with it. i'd love to be able to format
the box as part of the cell (like align center or right justify). i don't
want the check box to do anything; i just want to be able to click it for a
check mark. from what i've seen, i'm not looking for an activeX control or
form, because those just float and i have to move them around or delete them
manually. any ideas? thanks!


--

Dave Peterson


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default how do i simply add a check box to a cell?

excellent! thanks, dave! it's not EXACTLY what i was looking for, but still a
clean solution.
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
Cell References [email protected] Excel Discussion (Misc queries) 2 November 15th 06 11:37 PM
Using an offset formula for the reference in a relative reference Cuda Excel Worksheet Functions 6 November 15th 06 05:12 PM
Check box cell link - copy problem mailrail Excel Discussion (Misc queries) 3 November 8th 06 07:24 PM
insert date Larry Excel Worksheet Functions 28 July 15th 06 02:41 AM
up to 7 functions? ALex Excel Worksheet Functions 10 April 12th 05 06:42 PM


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