Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How can I make the below formula range consist of columns B and D, still
using the bottow row finder of .End(xlup) ? Thanks! Set frng = Range("B5:B" & Range("D65536").End(xlUp).Row) |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() change B5:B to B5:D I believ -- duan ----------------------------------------------------------------------- duane's Profile: http://www.excelforum.com/member.php...fo&userid=1162 View this thread: http://www.excelforum.com/showthread.php?threadid=26930 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
But that will include C, which I don't want it to....
"duane" wrote in message ... change B5:B to B5:D I believe -- duane ------------------------------------------------------------------------ duane's Profile: http://www.excelforum.com/member.php...o&userid=11624 View this thread: http://www.excelforum.com/showthread...hreadid=269304 |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I do not know how to define a discontinuous range -- duan ----------------------------------------------------------------------- duane's Profile: http://www.excelforum.com/member.php...fo&userid=1162 View this thread: http://www.excelforum.com/showthread.php?threadid=26930 |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Set frng = Union(Range("B5:B" & Range("B65536").End(xlUp).Row), _
Range("D5:D" & Range("D65536").End(xlUp).Row)) -- HTH RP "Steph" wrote in message ... How can I make the below formula range consist of columns B and D, still using the bottow row finder of .End(xlup) ? Thanks! Set frng = Range("B5:B" & Range("D65536").End(xlUp).Row) |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Bob!
"Bob Phillips" wrote in message ... Set frng = Union(Range("B5:B" & Range("B65536").End(xlUp).Row), _ Range("D5:D" & Range("D65536").End(xlUp).Row)) -- HTH RP "Steph" wrote in message ... How can I make the below formula range consist of columns B and D, still using the bottow row finder of .End(xlup) ? Thanks! Set frng = Range("B5:B" & Range("D65536").End(xlUp).Row) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I enter formula sum(range+range)*0.15 sumif(range=3) | Excel Discussion (Misc queries) | |||
conditional formula: sum a range if text present in another range | Excel Discussion (Misc queries) | |||
formula to sort a range so that it matches the exact rows of a column that is outside that range? | Excel Discussion (Misc queries) | |||
Macro to input formula in range based on another range | Excel Programming | |||
Range.Formula and Range question using Excel Automation | Excel Programming |