ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Suggestion to add ability to merge non-adjacent cells in Excel. (https://www.excelbanter.com/excel-discussion-misc-queries/26232-suggestion-add-ability-merge-non-adjacent-cells-excel.html)

Doyle_D

Suggestion to add ability to merge non-adjacent cells in Excel.
 
I would like to see the ability to merge non-adjacent cells. In essence, I
am talking about tying two or more cells together so that they behave like
the same cell: you would be able to change data in EITHER ONE and it will
automatically show up in the other cell AND vice-versa.
--
Doyle_D

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/comm...lic.excel.misc

David McRitchie

Hi Doyle,

Even merging two adjacent cells do not operate like that.

The only way you would be able to effect that change quickly
would be with a Change Event macro and would apply to
constants only not to formulas. I did not check as constant in my example.
http://www.mvps.org/dmcritchie/excel/event.htm#change

Option Explicit

Private Sub Worksheet_Change(ByVal Target As Range)
'to install -- right-click on the sheettab of the sheet to
' be used in and choose 'view code'. Paste this Worksheet
' event macro into the module.
'-- change to Col B changes value in Column G to that of B
'-- change to Col G changes value in Column B to that of G
On Error GoTo ErrHandler
Application.EnableEvents = False
If Target.Column = 2 Then
Cells(Target.row, 7).Value = Target.Value
ElseIf Target.Column = 7 Then
Cells(Target.row, 2).Value = Target.Value
End If
ErrHandler:
Application.EnableEvents = True
End Sub

---
HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page: http://www.mvps.org/dmcritchie/excel/search.htm

"Doyle_D" wrote in message ...
I would like to see the ability to merge non-adjacent cells. In essence, I
am talking about tying two or more cells together so that they behave like
the same cell: you would be able to change data in EITHER ONE and it will
automatically show up in the other cell AND vice-versa.
--
Doyle_D

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.


http://www.microsoft.com/office/comm...lic.excel.misc



Franz Verga

"Doyle_D" ha scritto nel messaggio


I would like to see the ability to merge non-adjacent cells. In
essence, I am talking about tying two or more cells together so that
they behave like the same cell: you would be able to change data in
EITHER ONE and it will automatically show up in the other cell AND
vice-versa.


If you want that a cell behave like another cell, you can link them, i.e. if
you want that cell A20 behaves like cell C3, just type in A20 the formula
=C3...

--
Hoping to be helpful...

Regards

Franz Verga

----------------------------------------------------------------------------------------
To reply translate from italian InVento (no capital letters)
----------------------------------------------------------------------------------------



Doyle_D

Franz,

Yes, this is exactly what I want, but with one exception: I want it to be
two-way. In other words, I want to be able to change data in A20 and have it
show up in C3 also. The trouble with this simple formula is that if I try
this in A20, it over-types the formula pointed at C3 and destroys the link.
The link I am looking for would be without formulas in the individual cell.

I don't think this functionality exists in Excel at this time. I am
attempting to suggest it, not so much ask how to do it.

--
Doyle_D


"Franz Verga" wrote:

"Doyle_D" ha scritto nel messaggio


I would like to see the ability to merge non-adjacent cells. In
essence, I am talking about tying two or more cells together so that
they behave like the same cell: you would be able to change data in
EITHER ONE and it will automatically show up in the other cell AND
vice-versa.


If you want that a cell behave like another cell, you can link them, i.e. if
you want that cell A20 behaves like cell C3, just type in A20 the formula
=C3...

--
Hoping to be helpful...

Regards

Franz Verga

----------------------------------------------------------------------------------------
To reply translate from italian InVento (no capital letters)
----------------------------------------------------------------------------------------




Franz Verga

"Doyle_D" ha scritto nel messaggio



I don't think this functionality exists in Excel at this time. I am
attempting to suggest it, not so much ask how to do it.


Yes, you're right the functionality you are looking for doesn't exist in
Excel, but David McRitchie suggestid a good proxy, IMHO...


--
Hoping to be helpful...

Regards

Franz Verga

----------------------------------------------------------------------------------------
To reply translate from italian InVento (no capital letters)
----------------------------------------------------------------------------------------




All times are GMT +1. The time now is 10:41 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com