VBA

Moderators: PavlinII
Number of threads: 1614
Number of posts: 3000

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
variables in access formulas Posted by rascal on 4 Jan 2004 at 8:59 AM
I am working on a program which sums a collumn; however, the column is created by a loop and therefore the last cell is a variable. How do I enter a variable in the formula. I tried several variations of this:

a = Range("A1").Formula = "=sum(Range(("b" & 3), ("b" & currow)))

However the formula is not recoginized as a formula and will not sum the range.

Thanks
Report
Re: variables in access formulas Posted by woja on 5 Jan 2004 at 11:07 AM
What you want is:
   Range("A1").Formula = "=SUM(B3:B" & currrow & ")"

Tip: Tou always set the .Formula property to the value you would type to enter a formula in the worksheet directly.

Hope this helps



Roger J Coult
Grimsby, UK


Report
Re: variables in access formulas Posted by rascal on 5 Jan 2004 at 8:25 PM
: What you want is:
:
:    Range("A1").Formula = "=SUM(B3:B" & currrow & ")"
: 

: Tip: Tou always set the .Formula property to the value you would type to enter a formula in the worksheet directly.
:
: Hope this helps
:
:

: Roger J Coult
: Grimsby, UK
:
:
:



Report
Re: variables in access formulas Posted by rascal on 5 Jan 2004 at 8:26 PM
: : What you want is:
: :
: :    Range("A1").Formula = "=SUM(B3:B" & currrow & ")"
: : 

: : Tip: Tou always set the .Formula property to the value you would type to enter a formula in the worksheet directly.
: :
: : Hope this helps
: :
: :

: : Roger J Coult
: : Grimsby, UK
: :
: :
: : That's great I already tried it out
:
:
:
:



Report
Re: variables in access formulas Posted by rascal on 6 Jan 2004 at 7:20 PM
: : : What you want is:
: : :
: : :    Range("A1").Formula = "=SUM(B3:B" & currrow & ")"
: : : 

: : : Tip: Tou always set the .Formula property to the value you would type to enter a formula in the worksheet directly.
: : :
: : : Hope this helps
: : :
: : :

: : : Roger J Coult
: : : Grimsby, UK
: : :
: : :
: : : That's great I already tried it out
: :
: :
: : I did try this out; however, I could not get the program to recognize the variable "currow" I either receive an error message or, if I put the quotation marks around the b3:b as you suggested, I only got the value of the cell with in the quotation marks
Range("A1").Formula = "=SUM(B3:B" & currrow & ")"
: :
:
:
:
:



Report
Re: variables in access formulas Posted by woja on 7 Jan 2004 at 2:31 AM
What I understood you were trying to do was to produce in cell A1 the sum of the cells from row 3 in column B to some calcuated row in column B. That is, the variable currrow is calculated in your VBA script.

I suspect that this is not what you are trying to do. Can you explain what you want to achieve in a little more detail?



Roger J Coult
Grimsby, UK


Report
Re: variables in access formulas Posted by rascal on 7 Jan 2004 at 7:45 PM
: What I understood you were trying to do was to produce in cell A1 the sum of the cells from row 3 in column B to some calcuated row in column B. That is, the variable currrow is calculated in your VBA script.
:
: I suspect that this is not what you are trying to do. Can you explain what you want to achieve in a little more detail?
:
:

: Roger J Coult
: Grimsby, UK
:
:
:
THIS PROGRAM IS KIND OF AN AMATURE WAY OF FORECASTING SALES. AS EACH DAY PROGRESSES THE GROSS SALES ARE SUBMITTED AND ENTERED INTO A CELL (VIA A TEXT BOX) THAT BOX WILL BE MULTIPLIED BY THE FRACTION OF THE TOTAL NUMBER OF DAYS IN THE PERIOD. FOR INSTANCE ON THE FIRST DAY THE PERIOD IS 1/20 (GIVEN 20 SALES DAYS) THE NEXT DAY IS 2/20, AND THE NEXT 3/20 AND SO FORTH. THEREFORE; ON THE DAY BEFORE THE FINAL DAY YOU WILL HAVE 19/20. WHAT I NEED TO DO IS TO BE ABLE TO TAKE THE AVERAGE OF THE COLUMN OF SALES LETS SAY THE B COLUMN (WHICH IS INCREASED BY ONE EACH DAY) MULTIPLY THAT BY THE FRACTION TO SOMEHOW BE ABLE TO PREDICT GIVEN LINEAR SALES THE END OF THE MONTH TOTALS.

SO WHAT I NEED IS THE ABILITY TO TAKE A AVERAGE OF A COLUMN GIVEN THAT THE COLUMN ROW IS A VARIABLE.

I KNOW THAT THIS IS CONVOLUTED REASONING AND IT MAY BE FAULTY BUT ONCE THE PROGRAMMING IS WORKED OUT WE CAN WORK ON THE PREDICTION FORMULA.

I KNOW THAT THE BOSS WILL USE THIS PROGRAM TO SHOW ME THAT MY SALES ARE POOR AND THEREFORE I DON'T DESERVE A RAISE.

THANKS FOR YOUR HELP



Report
Re: variables in access formulas Posted by woja on 8 Jan 2004 at 2:30 AM
Ahhh...

Let's say you have your sales figures in column B.

There is going to be some maximum number of sales days (shall we say 1000, just for the sake of example).

What you are saying is that you want the average of the cells B1:B1000 only counting the cells with some data in.

This is exactly what the AVERAGE() worksheet function does!

If you enter =AVERAGE(B1:B1000) in A1 (and there is no data in B1:B1000), Excel will display #DIV/0! becuase there is no data. Start entering values in B1:B1000 and you'll see the average displayed.

Hope this helps.




Roger J Coult
Grimsby, UK





 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.