Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Thomas G. Marshall
 
Posts: n/a
Default Checkbox not part of cell. (???) Cells can move "underneath". (!!!)


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.


  #2   Report Post  
P Daulton
 
Posts: n/a
Default

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" . com
wrote in message ...

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!!!!!!!!!!

--




  #3   Report Post  
Thomas G. Marshall
 
Posts: n/a
Default

Dave Peterson coughed up:
First, make sure your checkboxes are within each row (or cell).

Then rightclick on each and select Format control
then Properties tab

There's an option for moving/sizing with cells.

(The checkbox on the Forms toolbar has different options than the
checkbox on the Control toolbox toolbar.)

But the checkboxes are never gonna be attached to a cell. But they
can float over them nicely <bg.




Which is probably best anyway----As long as they obey the obvious cell
movement issues, I'm happy with that.

I'd suggest though that if they were added as text elements then they would
obey center/left/right alignment, etc.... but no matter.


--
"It's easier to be terrified by an enemy you admire."
-Thufir Hawat, Mentat and Master of Assassins to House Atreides


  #4   Report Post  
Gary Rowe
 
Posts: n/a
Default

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.



  #5   Report Post  
Thomas G. Marshall
 
Posts: n/a
Default


DOESN'T WORK.

When I insert a row, the rows all lower, but the checkboxes remain!

Line 24 was where I did a row insert, and this is what happened:






P Daulton coughed up:
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"
. com wrote in
message ...

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!!!!!!!!!!

--




--
"Gentlemen, you can't fight in here! This is the War Room!"

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
can't move a named cell without breaking a hyperlink to that cell Snakeye Links and Linking in Excel 3 January 26th 05 11:57 PM
summing part of cells in a range excelFan Excel Discussion (Misc queries) 2 December 5th 04 12:33 PM
vlookup to extract part cell content excelFan Excel Discussion (Misc queries) 2 December 5th 04 08:45 AM
do cell refernces have to move when I cut and paste? HW Excel Discussion (Misc queries) 2 December 3rd 04 12:54 AM
CELLS HAVING SAME NUMBER BY CHANGING ANY CELL JOHN MORREY Excel Discussion (Misc queries) 2 December 2nd 04 02:50 AM


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