Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I couldn't get it to work w/o some changes. You need a set statement for
marketvalues. For me, the Range statement only returned cell A1. In the Percentile function, you have to refer to the marketvalues.address as Excel won't recognize marketvalues (you'll get a NAME error). Dim marketvalues As Range Set marketvalues = Range("A1", Range("A" & Rows.Count).End(xlUp)) Range("B2").Formula = "=PERCENTILE(" & marketvalues.Address & ",0.2)" "Leith Ross" wrote: Hello Noah, This should work for you... Dim marketvalues As Range marketvalues = Range("A1:A" & Rows.Count).End(xlUp) Range("B2").Formula = "=PERCENTILE(MarketValues,0.2)" Sincerely, Leith Ross -- Leith Ross ------------------------------------------------------------------------ Leith Ross's Profile: http://www.excelforum.com/member.php...o&userid=18465 View this thread: http://www.excelforum.com/showthread...hreadid=480006 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Variable within a formula | Excel Worksheet Functions | |||
Using a variable in formula | Excel Programming | |||
Using a second variable within a formula... | Excel Discussion (Misc queries) | |||
Variable in a formula | Excel Programming | |||
Variable to formula. | Excel Programming |