Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 852
Default Sharing workbooks limitations - Merged Cells

Merged cells, both in the vba coding and on the sheet for formatting seem to be stopping the sharing of a workbook.

When I read this Note: does it say that merged cells are NOT supported so you must be sure to add them BEFORE sharing and then they will work okay?

Or are merged cells just plain not allowed in a shared workbook?

I know very little about sharing workbooks and have never done so myself. I sent a workbook to a OP and that person wants to use it as a shared workbook and it is not working because of merged cells.

Thanks,
Howard

*************
Note: Not all features are fully supported in a shared workbook. If you want to include any of the following features, you should add them before you save the workbook as a shared workbook. You cannot make changes to these features after you share the workbook.

Features that are not supported in a shared workbook
IN A SHARED WORKBOOK, YOU CANNOT: HOWEVER, THIS FUNCTIONALITY IS AVAILABLE:
Create an Excel table
Insert or delete blocks of cells You can insert entire rows and columns
Delete worksheets
Merge cells or split merged cells
*************
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,872
Default Sharing workbooks limitations - Merged Cells

Hi Howard,

Am Mon, 10 Feb 2014 10:49:34 -0800 (PST) schrieb L. Howard:

Merged cells, both in the vba coding and on the sheet for formatting seem to be stopping the sharing of a workbook.


if merged cells don't work and centeracrossselection is not reliable
enough read the width and the height of the selection and place
textboxes or labels with the names and the color over the selection.


Regards
Claus B.
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 852
Default Sharing workbooks limitations - Merged Cells

On Monday, February 10, 2014 2:32:14 PM UTC-8, Claus Busch wrote:
Hi Howard,



Am Mon, 10 Feb 2014 10:49:34 -0800 (PST) schrieb L. Howard:



Merged cells, both in the vba coding and on the sheet for formatting seem to be stopping the sharing of a workbook.




if merged cells don't work and centeracrossselection is not reliable

enough read the width and the height of the selection and place

textboxes or labels with the names and the color over the selection.





Regards

Claus B.

--


So the bottom line is no merged cells with a shared workbook, either before or after saving as a shared workbook.

Would you still be able to add comments to the selection or would the textbox/label prevent that?

I'll study up some on how to incorporate textbox/labels via code.

Thanks.
Howard
  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,872
Default Sharing workbooks limitations - Merged Cells

Hi Howard,

Am Mon, 10 Feb 2014 16:56:40 -0800 (PST) schrieb L. Howard:

Would you still be able to add comments to the selection or would the textbox/label prevent that?


if you insert a textbox or a label you can't select the cell behind. So
it is impossible to add a comment. you can place the comment in a cell
in front or behind the selection.


Regards
Claus B.
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 852
Default Sharing workbooks limitations - Merged Cells

On Monday, February 10, 2014 11:17:22 PM UTC-8, Claus Busch wrote:
Hi Howard,



Am Mon, 10 Feb 2014 16:56:40 -0800 (PST) schrieb L. Howard:



Would you still be able to add comments to the selection or would the textbox/label prevent that?




if you insert a textbox or a label you can't select the cell behind. So

it is impossible to add a comment. you can place the comment in a cell

in front or behind the selection.





Regards

Claus B.

--


After playing around with text boxes, I was coming to that conclusion.

I found this code that does an excellent job of filling a selection neatly with a text box.

I have a couple of other codes that add a predetermined text to the text box (Which would be a name in this case) and color but I cannot incorporate those methods into this preferred code.

One code also names the text box and therefore gets away from the ever increasing TextBox10, 11, 12, 13 etc.

So neat as this little snippet is, I lack the ability to add the centered text "Charlie", a chosen background color, and name it TB_Charlie.

I am pretty sure I can get the delete text box code from the macro recorder by going into Design Mode, click on the text box and delete it while recording.

I'm not sure why this Dim statement was included in the code.

Dim oTB As Object

Works okay commented out...?

Thanks.
Howard


Sub TextBoxSelection()
Dim ws As Worksheet

Dim oTB As Object
Set ws = Worksheets("Sheet2")
If TypeName(Selection) = "Range" Then
With Selection
ActiveSheet.Shapes.AddTextBox _
msoTextOrientationHorizontal, .Left, _
.Top, .Width, .Height
End With
End If
End Sub


  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,872
Default Sharing workbooks limitations - Merged Cells

Hi Howard,

Am Mon, 10 Feb 2014 23:52:36 -0800 (PST) schrieb L. Howard:


ActiveSheet.Shapes.AddTextBox _
msoTextOrientationHorizontal, .Left, _
.Top, .Width, .Height


I guess the OP would write:
set oTB= ActiveSheet.Shapes.AddTextBox _
( msoTextOrientationHorizontal, .Left, _
.Top, .Width, .Height)

that he could refer to oTB to set other properties.

Pleas look again he
https://skydrive.live.com/#cid=9378A...121822A3%21326
for "DeskBooking"

I copied a row of the table to BE10:BX10 with columnwidth.
Now you can select a range into the table and run "Test_CB". The same
range will be selected in BE10:BX10, will be colored and get the name
and then this range will be copied as picture back into the table.


Regards
Claus B.
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2
  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 852
Default Sharing workbooks limitations - Merged Cells

On Tuesday, February 11, 2014 12:49:55 AM UTC-8, Claus Busch wrote:
Hi Howard,



Am Mon, 10 Feb 2014 23:52:36 -0800 (PST) schrieb L. Howard:





ActiveSheet.Shapes.AddTextBox _


msoTextOrientationHorizontal, .Left, _


.Top, .Width, .Height




I guess the OP would write:

set oTB= ActiveSheet.Shapes.AddTextBox _

( msoTextOrientationHorizontal, .Left, _

.Top, .Width, .Height)



that he could refer to oTB to set other properties.



Pleas look again he

https://skydrive.live.com/#cid=9378A...121822A3%21326

for "DeskBooking"



I copied a row of the table to BE10:BX10 with columnwidth.

Now you can select a range into the table and run "Test_CB". The same

range will be selected in BE10:BX10, will be colored and get the name

and then this range will be copied as picture back into the table.





Regards

Claus B.

--


Now that's impressive.

I have some work to do to get all the names assigned and colors too then the deletes.

This should keep me busy for awhile and off the Forum. (May have a question or two but will give it my best shot.)

Thanks.
Howard
  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,872
Default Sharing workbooks limitations - Merged Cells

Hi Howard,

Am Tue, 11 Feb 2014 01:31:10 -0800 (PST) schrieb L. Howard:

This should keep me busy for awhile and off the Forum. (May have a question or two but will give it my best shot.)


please look first in SkyDrive for "DeskBookings_2.0"
because I now know why centeracrossselection doesn't work reliable.
We forgot with "Reform" to reset the horizontal alignment to xlGeneral.
So the cells with centeracrossselection not always are the same as
selected ones.
Have a try for the workbook. Then comments will also be possible.


Regards
Claus B.
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2
  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 852
Default Sharing workbooks limitations - Merged Cells




please look first in SkyDrive for "DeskBookings_2.0"

because I now know why centeracrossselection doesn't work reliable.

We forgot with "Reform" to reset the horizontal alignment to xlGeneral.

So the cells with centeracrossselection not always are the same as

selected ones.

Have a try for the workbook. Then comments will also be possible.


Regards

Claus B.

--


I got 2.0 up and going with the first name Charlie. Really seems to work well as I cannot duplicate the overrun selection errors. I just need to clean up all the other names and should be good to go.

Do have a question about the merged cells Y1, Z1 AA1 to make the wide drop downs readable. Will those merged cells stop the workbook from being shared?

If they do, then I guess I can shorten the long entries to some degree and live with that.

The comments and the sharing seem to be the larger issue.

Howard

  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,872
Default Sharing workbooks limitations - Merged Cells

Hi Howard,

Am Tue, 11 Feb 2014 05:55:07 -0800 (PST) schrieb L. Howard:

Do have a question about the merged cells Y1, Z1 AA1 to make the wide drop downs readable. Will those merged cells stop the workbook from being shared?


if merged cells exist workbook sharing should be possible.
But you can't merge or unmerge in a shared workbook.


Regards
Claus B.
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2


  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 852
Default Sharing workbooks limitations - Merged Cells

On Tuesday, February 11, 2014 6:05:10 AM UTC-8, Claus Busch wrote:
Hi Howard,



Am Tue, 11 Feb 2014 05:55:07 -0800 (PST) schrieb L. Howard:



Do have a question about the merged cells Y1, Z1 AA1 to make the wide drop downs readable. Will those merged cells stop the workbook from being shared?




if merged cells exist workbook sharing should be possible.

But you can't merge or unmerge in a shared workbook.





Regards

Claus B.

--


Okay, got it.

Thanks.

Howard
  #12   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 852
Default Sharing workbooks limitations - Merged Cells


Hi Claus,

From the end user of the Bookings workbook after receiving version 2.0, and my reply to her:

----------
Howard - this is brilliant!

thank you so much!

My colleagues have had a look too and they're all very excited to start using this in place of our current crappy system that times out on us all the time!

Thank you thank you thank you thank you!

Samantha :D

---------

Thank you for the kind words while at the same time I found a small glitch in the coding in 2.0.

You will notice if Charlie adds comments he will get a different set of user form displays than the rest of the bookers.

This version 2.1 has that corrected and should be the one to use.

https://www.dropbox.com/s/jf02mhdeu7...rop%20Box.xlsm

Also, please know that the majority of the code is from Claus, a very dominant contributor in the MS Public Excel Groups.
He often gives me gems and I "do the assembly" to the best of my know how.

This seems to have worked out nicely for your bookings project.

Regards,
Howard
-------------

Howard
  #13   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,872
Default Sharing workbooks limitations - Merged Cells

Hi Howard,

Am Wed, 12 Feb 2014 08:01:11 -0800 (PST) schrieb L. Howard:

My colleagues have had a look too and they're all very excited to start using this in place of our current crappy system that times out on us all the time!


fine that it is working now. Glad to help. Thank you for the feedback.


Regards
Claus B.
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2
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
Problem with pasting special merged cells to merged cells ritpg[_2_] Excel Programming 3 March 9th 10 07:14 PM
Merged Cells Limitations Al Excel Discussion (Misc queries) 1 August 18th 09 03:41 PM
Linking Merged Cells in Different Workbooks jeffc4442 Excel Discussion (Misc queries) 7 January 31st 07 01:53 PM
Copy/Cut/Paste of Merged Cells in Shared Protected Workbooks DaveyC4S Excel Discussion (Misc queries) 0 September 20th 05 01:24 PM
Limitations of shared workbooks DieuSoleil[_2_] Excel Programming 4 September 21st 04 07:21 AM


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