Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 15
Default Finding the right most cell as a function

Ladies & Gents,

I'm using a spread sheet which has many rows of information, with multiple
start & finishing columns. Can anyone help me with a function that can
return the first & last values of each row?


TIA

Andrew Sbrana


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 15
Default Finding the right most cell as a function (oops! I forgot)

Ladies & Gents,

I'm using a spreadsheet which has many rows of information, with multiple
start & finishing columns. Can anyone help me with a function that can
return the first & last values of each row?

I forgot to mention that I'm using Excel 97 to create the spreadsheet
mentioned.


TIA

Andrew Sbrana



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 42
Default Finding the right most cell as a function (oops! I forgot)

If you can select a cell in each row then:

Selection.End(xlToLeft).value

or (xlToRight)

should get you started


"Andrew" wrote:

Ladies & Gents,

I'm using a spreadsheet which has many rows of information, with multiple
start & finishing columns. Can anyone help me with a function that can
return the first & last values of each row?

I forgot to mention that I'm using Excel 97 to create the spreadsheet
mentioned.


TIA

Andrew Sbrana




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 23
Default Finding the right most cell as a function

Your question is unclear and I cannot give a complete answer.

1) What did you meant by "has multiple start & finish columns"? Every row's
start column and finish column may be different?

2) If you got the custom functions, where will you enter those functions?
Will they be entered in the same column on the right-hand-side, or adjacent
to the last column of each row?

The optimal case will be:
1) All row start in column A
2) The formulas are entered on the right-hand-side of each row, and there is
always one empty cell between the right-most cell and the formula. (Because
if there is no empty cell, the formulas will become the last and second-last
columns!!)

The follow macros may give you some hint of the basic strategy to solve the
problem:

Function firstcell()
firstcell = _
Application.Caller.Parent.Rows(Application.Caller. Row). _
Cells(1).Value
End Function

Function lastcell()
lastcell = _
Application.Caller.Parent.Rows(Application.Caller. Row). _
Cells(1).End(xlToRight).Value
End Function



Regards,
Edwin Tam

http://www.vonixx.com



On 1/11/05 6:36 AM, in article ,
"Andrew" wrote:

Ladies & Gents,

I'm using a spread sheet which has many rows of information, with multiple
start & finishing columns. Can anyone help me with a function that can
return the first & last values of each row?


TIA

Andrew Sbrana



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
Function for finding a cell with Anumber in it steve Excel Worksheet Functions 3 November 4th 07 01:45 PM
Finding cell that returns bad "solver_val" function. Box815 Excel Discussion (Misc queries) 1 January 4th 07 06:03 PM
Offset function with nested match function not finding host ss. MKunert Excel Worksheet Functions 1 March 21st 06 10:46 PM
function for finding a value! Simon Lloyd Excel Worksheet Functions 5 September 9th 05 02:44 PM
Help: I need a function for finding next cell vertically with value tobriant Excel Worksheet Functions 1 July 12th 05 08:39 PM


All times are GMT +1. The time now is 01:17 PM.

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"