PC Review


Reply
Thread Tools Rate Thread

Combo box and Linkedcell does not work in Excel 2003

 
 
=?Utf-8?B?VHZuZ3V5ZQ==?=
Guest
Posts: n/a
 
      28th Dec 2005
Hi programmers,
I created a combo box in Excel 2000 and a linkedcell. They worked very
well. I updated to Excel 2003, and they don't work well any more. The
problem is when I click down arrow to select a name in Combo box, it shows an
error message as said that the linked cell must be unlocked. I have to
locked the linked cell. Otherwise, everybody can change data in the linked
cell. However, if I click on the middle of the combo box, it works well; and
if I click on the down arrow, it shows error message. Any one knows how to
fix this problem? Please help me. Thank you.
Tvnguye
 
Reply With Quote
 
 
 
 
Dave Peterson
Guest
Posts: n/a
 
      28th Dec 2005
Put the linked cell in a column and hide the column--not foolproof, but maybe
effective.

Put the linked cell in a different worksheet, then hide that worksheet (maybe
more effective).



Tvnguye wrote:
>
> Hi programmers,
> I created a combo box in Excel 2000 and a linkedcell. They worked very
> well. I updated to Excel 2003, and they don't work well any more. The
> problem is when I click down arrow to select a name in Combo box, it shows an
> error message as said that the linked cell must be unlocked. I have to
> locked the linked cell. Otherwise, everybody can change data in the linked
> cell. However, if I click on the middle of the combo box, it works well; and
> if I click on the down arrow, it shows error message. Any one knows how to
> fix this problem? Please help me. Thank you.
> Tvnguye


--

Dave Peterson
 
Reply With Quote
 
Dave Peterson
Guest
Posts: n/a
 
      28th Dec 2005
Or just use code to populate that cell with the combobox's value.

Unprotect the sheet, populate the cell, reprotect the sheet.

Tvnguye wrote:
>
> Hi programmers,
> I created a combo box in Excel 2000 and a linkedcell. They worked very
> well. I updated to Excel 2003, and they don't work well any more. The
> problem is when I click down arrow to select a name in Combo box, it shows an
> error message as said that the linked cell must be unlocked. I have to
> locked the linked cell. Otherwise, everybody can change data in the linked
> cell. However, if I click on the middle of the combo box, it works well; and
> if I click on the down arrow, it shows error message. Any one knows how to
> fix this problem? Please help me. Thank you.
> Tvnguye


--

Dave Peterson
 
Reply With Quote
 
=?Utf-8?B?VHZuZ3V5ZQ==?=
Guest
Posts: n/a
 
      29th Dec 2005
Thank you for your response, but both your answers don't work for me. I have
5 cells in the same sheet, and I used VLOOKUP on those cells to look at
linked cell. All of them must be visible by users. If you have other ideas,
please help me.
Thank you.
Tvnguye

"Dave Peterson" wrote:

> Or just use code to populate that cell with the combobox's value.
>
> Unprotect the sheet, populate the cell, reprotect the sheet.
>
> Tvnguye wrote:
> >
> > Hi programmers,
> > I created a combo box in Excel 2000 and a linkedcell. They worked very
> > well. I updated to Excel 2003, and they don't work well any more. The
> > problem is when I click down arrow to select a name in Combo box, it shows an
> > error message as said that the linked cell must be unlocked. I have to
> > locked the linked cell. Otherwise, everybody can change data in the linked
> > cell. However, if I click on the middle of the combo box, it works well; and
> > if I click on the down arrow, it shows error message. Any one knows how to
> > fix this problem? Please help me. Thank you.
> > Tvnguye

>
> --
>
> Dave Peterson
>

 
Reply With Quote
 
Dave Peterson
Guest
Posts: n/a
 
      29th Dec 2005
Point your =vlookup() to the linked cell on the hidden sheet:

=vlookup(hidden!a1,sheet2!a:b,2,false)

If the linked cell is part of the table (sheet2!a:b in my example), then put a
formula that points back to the linked cell):

=hidden!a1
or
=if(hidden!a1="","",hidden!a1)

(where Hidden is the name of the hidden worksheet.)

And if you used code, I don't see the problem, either.



Tvnguye wrote:
>
> Thank you for your response, but both your answers don't work for me. I have
> 5 cells in the same sheet, and I used VLOOKUP on those cells to look at
> linked cell. All of them must be visible by users. If you have other ideas,
> please help me.
> Thank you.
> Tvnguye
>
> "Dave Peterson" wrote:
>
> > Or just use code to populate that cell with the combobox's value.
> >
> > Unprotect the sheet, populate the cell, reprotect the sheet.
> >
> > Tvnguye wrote:
> > >
> > > Hi programmers,
> > > I created a combo box in Excel 2000 and a linkedcell. They worked very
> > > well. I updated to Excel 2003, and they don't work well any more. The
> > > problem is when I click down arrow to select a name in Combo box, it shows an
> > > error message as said that the linked cell must be unlocked. I have to
> > > locked the linked cell. Otherwise, everybody can change data in the linked
> > > cell. However, if I click on the middle of the combo box, it works well; and
> > > if I click on the down arrow, it shows error message. Any one knows how to
> > > fix this problem? Please help me. Thank you.
> > > Tvnguye

> >
> > --
> >
> > Dave Peterson
> >


--

Dave Peterson
 
Reply With Quote
 
Biff
Guest
Posts: n/a
 
      29th Dec 2005
Hide the linked cell "under" the combo box.

Biff

"Dave Peterson" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Point your =vlookup() to the linked cell on the hidden sheet:
>
> =vlookup(hidden!a1,sheet2!a:b,2,false)
>
> If the linked cell is part of the table (sheet2!a:b in my example), then
> put a
> formula that points back to the linked cell):
>
> =hidden!a1
> or
> =if(hidden!a1="","",hidden!a1)
>
> (where Hidden is the name of the hidden worksheet.)
>
> And if you used code, I don't see the problem, either.
>
>
>
> Tvnguye wrote:
>>
>> Thank you for your response, but both your answers don't work for me. I
>> have
>> 5 cells in the same sheet, and I used VLOOKUP on those cells to look at
>> linked cell. All of them must be visible by users. If you have other
>> ideas,
>> please help me.
>> Thank you.
>> Tvnguye
>>
>> "Dave Peterson" wrote:
>>
>> > Or just use code to populate that cell with the combobox's value.
>> >
>> > Unprotect the sheet, populate the cell, reprotect the sheet.
>> >
>> > Tvnguye wrote:
>> > >
>> > > Hi programmers,
>> > > I created a combo box in Excel 2000 and a linkedcell. They worked
>> > > very
>> > > well. I updated to Excel 2003, and they don't work well any more.
>> > > The
>> > > problem is when I click down arrow to select a name in Combo box, it
>> > > shows an
>> > > error message as said that the linked cell must be unlocked. I have
>> > > to
>> > > locked the linked cell. Otherwise, everybody can change data in the
>> > > linked
>> > > cell. However, if I click on the middle of the combo box, it works
>> > > well; and
>> > > if I click on the down arrow, it shows error message. Any one knows
>> > > how to
>> > > fix this problem? Please help me. Thank you.
>> > > Tvnguye
>> >
>> > --
>> >
>> > Dave Peterson
>> >

>
> --
>
> Dave Peterson



 
Reply With Quote
 
=?Utf-8?B?VHZuZ3V5ZQ==?=
Guest
Posts: n/a
 
      30th Dec 2005
Hi Dave Peterson,
Thank you for your help. Your way is just a trick. So I point linked cell
to an unlocked cell that is not visible by users, and then I used VLOOKUP of
a cell that must be visible by users to look up to that cell. I would like
to thank you for new way to use linked cell to point to a cell from another
sheet. That is new that I did not know before.
Happy New Year to you, and your family.
Tvnguye


"Dave Peterson" wrote:

> Point your =vlookup() to the linked cell on the hidden sheet:
>
> =vlookup(hidden!a1,sheet2!a:b,2,false)
>
> If the linked cell is part of the table (sheet2!a:b in my example), then put a
> formula that points back to the linked cell):
>
> =hidden!a1
> or
> =if(hidden!a1="","",hidden!a1)
>
> (where Hidden is the name of the hidden worksheet.)
>
> And if you used code, I don't see the problem, either.
>
>
>
> Tvnguye wrote:
> >
> > Thank you for your response, but both your answers don't work for me. I have
> > 5 cells in the same sheet, and I used VLOOKUP on those cells to look at
> > linked cell. All of them must be visible by users. If you have other ideas,
> > please help me.
> > Thank you.
> > Tvnguye
> >
> > "Dave Peterson" wrote:
> >
> > > Or just use code to populate that cell with the combobox's value.
> > >
> > > Unprotect the sheet, populate the cell, reprotect the sheet.
> > >
> > > Tvnguye wrote:
> > > >
> > > > Hi programmers,
> > > > I created a combo box in Excel 2000 and a linkedcell. They worked very
> > > > well. I updated to Excel 2003, and they don't work well any more. The
> > > > problem is when I click down arrow to select a name in Combo box, it shows an
> > > > error message as said that the linked cell must be unlocked. I have to
> > > > locked the linked cell. Otherwise, everybody can change data in the linked
> > > > cell. However, if I click on the middle of the combo box, it works well; and
> > > > if I click on the down arrow, it shows error message. Any one knows how to
> > > > fix this problem? Please help me. Thank you.
> > > > Tvnguye
> > >
> > > --
> > >
> > > Dave Peterson
> > >

>
> --
>
> Dave Peterson
>

 
Reply With Quote
 
Dave Peterson
Guest
Posts: n/a
 
      30th Dec 2005
Glad you got it working.

Tvnguye wrote:
>
> Hi Dave Peterson,
> Thank you for your help. Your way is just a trick. So I point linked cell
> to an unlocked cell that is not visible by users, and then I used VLOOKUP of
> a cell that must be visible by users to look up to that cell. I would like
> to thank you for new way to use linked cell to point to a cell from another
> sheet. That is new that I did not know before.
> Happy New Year to you, and your family.
> Tvnguye
>
> "Dave Peterson" wrote:
>
> > Point your =vlookup() to the linked cell on the hidden sheet:
> >
> > =vlookup(hidden!a1,sheet2!a:b,2,false)
> >
> > If the linked cell is part of the table (sheet2!a:b in my example), then put a
> > formula that points back to the linked cell):
> >
> > =hidden!a1
> > or
> > =if(hidden!a1="","",hidden!a1)
> >
> > (where Hidden is the name of the hidden worksheet.)
> >
> > And if you used code, I don't see the problem, either.
> >
> >
> >
> > Tvnguye wrote:
> > >
> > > Thank you for your response, but both your answers don't work for me. I have
> > > 5 cells in the same sheet, and I used VLOOKUP on those cells to look at
> > > linked cell. All of them must be visible by users. If you have other ideas,
> > > please help me.
> > > Thank you.
> > > Tvnguye
> > >
> > > "Dave Peterson" wrote:
> > >
> > > > Or just use code to populate that cell with the combobox's value.
> > > >
> > > > Unprotect the sheet, populate the cell, reprotect the sheet.
> > > >
> > > > Tvnguye wrote:
> > > > >
> > > > > Hi programmers,
> > > > > I created a combo box in Excel 2000 and a linkedcell. They worked very
> > > > > well. I updated to Excel 2003, and they don't work well any more. The
> > > > > problem is when I click down arrow to select a name in Combo box, it shows an
> > > > > error message as said that the linked cell must be unlocked. I have to
> > > > > locked the linked cell. Otherwise, everybody can change data in the linked
> > > > > cell. However, if I click on the middle of the combo box, it works well; and
> > > > > if I click on the down arrow, it shows error message. Any one knows how to
> > > > > fix this problem? Please help me. Thank you.
> > > > > Tvnguye
> > > >
> > > > --
> > > >
> > > > Dave Peterson
> > > >

> >
> > --
> >
> > Dave Peterson
> >


--

Dave Peterson
 
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
Excel 2003 help doesn't work. I got both Excel 2003 and 2007 insta Kenneth Andersen Microsoft Excel Misc 0 16th Feb 2010 10:44 AM
Combo Box doesn't work after conversion from 2003 to 2007 Nika Microsoft Access Forms 0 15th Oct 2008 06:59 PM
combo box doesn't work in excel 2003 pabs Microsoft Excel Worksheet Functions 0 23rd Jan 2006 05:27 PM
Combo Box "LinkedCell" option Patty via OfficeKB.com Microsoft Excel Misc 0 2nd Aug 2005 10:01 PM
Checkbox1.LinkedCell = ActiveCell "Why wont this work?& TimeTraveller - ExcelForums.com Microsoft Excel Programming 2 11th Sep 2004 09:05 PM


Features
 

Advertising
 

Newsgroups
 


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