Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Linking one cell to another


Okay, I'm trying to link one cell (business expense - lunch) to another
section on the spreadsheet which is where they explain where, when and
with whom they had lunch.

Once they enter the dollar amount for lunch is it possible for them to
automatically be taken to the other cell where they will HAVE to put in
the additional information?

Any help would be greatly appreciated.


--
sjk1026
------------------------------------------------------------------------
sjk1026's Profile: http://www.excelforum.com/member.php...o&userid=36630
View this thread: http://www.excelforum.com/showthread...hreadid=563766

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,355
Default Linking one cell to another

You might be able to use a Worksheet_change event and put the code to get the
the correct location based on the entry location.

"sjk1026" wrote:


Okay, I'm trying to link one cell (business expense - lunch) to another
section on the spreadsheet which is where they explain where, when and
with whom they had lunch.

Once they enter the dollar amount for lunch is it possible for them to
automatically be taken to the other cell where they will HAVE to put in
the additional information?

Any help would be greatly appreciated.


--
sjk1026
------------------------------------------------------------------------
sjk1026's Profile: http://www.excelforum.com/member.php...o&userid=36630
View this thread: http://www.excelforum.com/showthread...hreadid=563766


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,069
Default Linking one cell to another

The following code jumps to a different cell on the same worksheet when a
change is made to a particular cell. It needs to be pasted into the code
module for that worksheet.

'ExpInput is range name for expense input cell.
'ExpExplain is range name for expense explanation cell.

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = Range("ExpInput").Address Then
Range("ExpExplain").Activate
ActiveCell.Select
End If
End Sub

This take the user to the other cell. As for HAVING to enter additional
information, that's best achieved by communicating and enforcing a consistent
policy (expenses will not be approved until explanatory detail has been
provided).

Hope this helps,

Hutch

"sjk1026" wrote:


Okay, I'm trying to link one cell (business expense - lunch) to another
section on the spreadsheet which is where they explain where, when and
with whom they had lunch.

Once they enter the dollar amount for lunch is it possible for them to
automatically be taken to the other cell where they will HAVE to put in
the additional information?

Any help would be greatly appreciated.


--
sjk1026
------------------------------------------------------------------------
sjk1026's Profile: http://www.excelforum.com/member.php...o&userid=36630
View this thread: http://www.excelforum.com/showthread...hreadid=563766


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Linking one cell to another


Thanks for your help. :)


--
sjk1026
------------------------------------------------------------------------
sjk1026's Profile: http://www.excelforum.com/member.php...o&userid=36630
View this thread: http://www.excelforum.com/showthread...hreadid=563766

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
insert date Larry Excel Worksheet Functions 28 July 15th 06 02:41 AM
linking a cell containing text to another cell containing text / data gin2000 Excel Discussion (Misc queries) 5 May 19th 06 09:08 PM
Help with this conditional IF statement C-Dawg Excel Discussion (Misc queries) 3 May 15th 06 06:01 PM
linking to a cell within a text cell or comment BlueJ2005 Excel Worksheet Functions 0 May 11th 06 10:36 PM
Linking a cell to another workbook cell based on a variable name Brian Excel Discussion (Misc queries) 6 June 1st 05 11:54 PM


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