PC Review


Reply
Thread Tools Rate Thread

Checkbox not part of cell. (???) Cells can move "underneath". (!!!)

 
 
Thomas G. Marshall
Guest
Posts: n/a
 
      17th Dec 2004

When I add a checkbox form to my spreadsheet, it is not part of any cell.
It sits above the spreadsheet and can even overlap the row/column/cell
boundary lines.

When I place them so that they look like they're "within" the cell,
inserting a row will move the cells with text down, but the checkboxes, as
you can guess, stay put.

Is there someway to stitch the checkbox form to the cell contents itself?

THANKS!!!!!!!!!!

--
With knowledge comes sorrow.


 
Reply With Quote
 
 
 
 
P Daulton
Guest
Posts: n/a
 
      17th Dec 2004
If it's a COntrol Toolbox checkbox
R-click, Format Control, Properties tab, under object positioning, 3
choices.
If it's a Forms toolbar checkbox:
R-click, Format Control, Properties tab, under object positioning, 2
choices.
P.

"Thomas G. Marshall" <(E-Mail Removed)>
wrote in message news:OaiC2%(E-Mail Removed)...
>
> When I add a checkbox form to my spreadsheet, it is not part of any cell.
> It sits above the spreadsheet and can even overlap the row/column/cell
> boundary lines.
>
> When I place them so that they look like they're "within" the cell,
> inserting a row will move the cells with text down, but the checkboxes, as
> you can guess, stay put.
>
> Is there someway to stitch the checkbox form to the cell contents itself?
>
> THANKS!!!!!!!!!!
>
> --
>
>



 
Reply With Quote
 
=?Utf-8?B?R2FyeSBSb3dl?=
Guest
Posts: n/a
 
      17th Dec 2004
You can use special characters to represent the check box. Using the
wingding font character code 168 for a blank checkbox and character code 254
for a checked checkbox in a cell and then using code to execute based on the
whether the code is either 168 or 254:
rivate Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
Application.ScreenUpdating = False
If ActiveCell.Value = Chr(254) Then
Application.ScreenUpdating = False
ActiveCell.Value = Chr(168)
Application.ScreenUpdating = False
'code goes here
Application.ScreenUpdating = True
Else
Application.ScreenUpdating = False
ActiveCell.Value = Chr(254)
Application.ScreenUpdating = False
'code goes here
Application.ScreenUpdating = True
End If
Application.ScreenUpdating = True

--Gary

"Thomas G. Marshall" wrote:

>
> When I add a checkbox form to my spreadsheet, it is not part of any cell.
> It sits above the spreadsheet and can even overlap the row/column/cell
> boundary lines.
>
> When I place them so that they look like they're "within" the cell,
> inserting a row will move the cells with text down, but the checkboxes, as
> you can guess, stay put.
>
> Is there someway to stitch the checkbox form to the cell contents itself?
>
> THANKS!!!!!!!!!!
>
> --
> With knowledge comes sorrow.
>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
If part of a cell = "NVA" then insert "Norfolk" in return cell RNCKWMN Microsoft Excel Worksheet Functions 4 13th Jun 2009 08:53 PM
Checkbox not part of cell. (???) Cells can move "underneath". (!!!) Thomas G. Marshall Microsoft Excel Discussion 2 17th Dec 2004 09:01 PM
Re: Checkbox not part of cell. (???) Cells can move "underneath". (!!!) Thomas G. Marshall Microsoft Excel Misc 0 17th Dec 2004 04:56 PM
Checkbox not part of cell. (???) Cells can move "underneath". (!!!) Thomas G. Marshall Microsoft Excel Discussion 2 17th Dec 2004 04:56 PM
Making a shared folder the "My Documents" folde makes EVERYTHING underneath "available offline" Michael Moser Windows XP Work Remotely 1 24th Oct 2004 09:41 PM


Features
 

Advertising
 

Newsgroups
 


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