YES!!!!

It worked!!

 

Thank you!

 

Från: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
För Abhishek Jain
Skickat: Tuesday, June 11, 2013 6:43 AM
Till: excel-macros@googlegroups.com
Ämne: Re: $$Excel-Macros$$ Range reference with Cells not working

 

See if this works:

 

Dim WeekRangeSource As Range

Set WeekRangeSource = Range(Cells(21, 10), Cells(350, 10))

MedianPerW = WorksheetFunction.Median(WeekRangeSource)

AveragePerW = WorksheetFunction.Average(WeekRangeSource)

StDevPerW = WorksheetFunction.StDev(WeekRangeSource)

 

PS: I saw no use of the variable WeekRange so i removed it. You can
re-declare if it of any use to you.

 

On Tue, Jun 11, 2013 at 1:14 AM, Ruff <ro...@algonet.se> wrote:

 

Hi 

I am doing something wrong using the Range object. I can use the fixed
"J21:J350" but does not manage the flexible Cell reference in this example.


 

In this code the calculations work with: "J21:J350" but not with:
Range(Cells(21, 10), Cells(350, 10))  

 

 

Dim WeekRange As Range

Dim WeekRangeSource As Range

 

Code:

'WeekRangeSource = Range(Cells(21, 10), Cells(350, 10))

WeekRangeSource = "J21:J350"

Set WeekRange = Range(WeekRangeSource)

MedianPerW = WorksheetFunction.Median(WeekRange)

AveragePerW = WorksheetFunction.Average(WeekRange)

StDevPerW = WorksheetFunction.StDev(WeekRange)

 

Regards,

Rolf

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
https://www.facebook.com/discussexcel
 
FORUM RULES
 
1) Use concise, accurate thread titles. Poor thread titles, like Please
Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will
not get quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security
measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.
 
NOTE : Don't ever post confidential data in a workbook. Forum owners and
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups
"MS EXCEL AND VBA MACROS" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to excel-macros+unsubscr...@googlegroups.com
<mailto:excel-macros%2bunsubscr...@googlegroups.com> .
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

 

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
https://www.facebook.com/discussexcel
 
FORUM RULES
 
1) Use concise, accurate thread titles. Poor thread titles, like Please
Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will
not get quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security
measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.
 
NOTE : Don't ever post confidential data in a workbook. Forum owners and
members are not responsible for any loss.
--- 
You received this message because you are subscribed to a topic in the
Google Groups "MS EXCEL AND VBA MACROS" group.
To unsubscribe from this topic, visit
https://groups.google.com/d/topic/excel-macros/T1ud8OElU2I/unsubscribe?hl=en
.
To unsubscribe from this group and all its topics, send an email to
excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups "MS 
EXCEL AND VBA MACROS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to