Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() I know the absolute offsets of the rows and columns in a seperate sheet and want to get the max of that range. For example: =Max(CC, RR, cc, rr) where all the parameters are numbers allowing me to define the range. -- excel12345 ------------------------------------------------------------------------ excel12345's Profile: http://www.excelforum.com/member.php...o&userid=31975 View this thread: http://www.excelforum.com/showthread...hreadid=517016 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try:
Function mxinr(c1 As Long, r1 As Long, c2 As Long, r2 As Long) As Double Dim r, rr As Range Dim v As Double Set r = Range(Cells(r1, c1), Cells(r2, c2)) v = Cells(r1, c1).Value For Each rr In r If rr.Value v Then v = rr.Value End If Next mxinr = v End Function -- Gary''s Student "excel12345" wrote: I know the absolute offsets of the rows and columns in a seperate sheet and want to get the max of that range. For example: =Max(CC, RR, cc, rr) where all the parameters are numbers allowing me to define the range. -- excel12345 ------------------------------------------------------------------------ excel12345's Profile: http://www.excelforum.com/member.php...o&userid=31975 View this thread: http://www.excelforum.com/showthread...hreadid=517016 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Check out the OFFSET() function in XL Help.
In article , excel12345 wrote: I know the absolute offsets of the rows and columns in a seperate sheet and want to get the max of that range. For example: =Max(CC, RR, cc, rr) where all the parameters are numbers allowing me to define the range. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=MAX(INDIRECT("Sheet2!"&ADDRESS(rrf,ccf)&"":""&ADD RESS(rrl,ccl)))
HTH -- AP "excel12345" a écrit dans le message de ... I know the absolute offsets of the rows and columns in a seperate sheet and want to get the max of that range. For example: =Max(CC, RR, cc, rr) where all the parameters are numbers allowing me to define the range. -- excel12345 ------------------------------------------------------------------------ excel12345's Profile: http://www.excelforum.com/member.php...o&userid=31975 View this thread: http://www.excelforum.com/showthread...hreadid=517016 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Thanks to all of you for your help - I actually used a bit from each of you and solved the problem and learned some valuable information at the same time. Your time and effort in helping me is much appreciated. -- excel12345 ------------------------------------------------------------------------ excel12345's Profile: http://www.excelforum.com/member.php...o&userid=31975 View this thread: http://www.excelforum.com/showthread...hreadid=517016 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I get the maximum absolute value of a range of numbers? | Excel Discussion (Misc queries) | |||
Searching a range of numbers for a specified total | Excel Worksheet Functions | |||
How do I use a range of numbers in an if statement? | Excel Worksheet Functions | |||
Help PLEASE! Not sure what answer is: Match? Index? Other? | Excel Worksheet Functions | |||
Match function...random search? | Excel Worksheet Functions |