Related:         
- VB, How to pull formula on graph to a cell?
 - Excel cell color formula - Guide
 - Number to words in excel formula - Guide
 - Logitech formula vibration feedback wheel driver - Download - Drivers
 - Credit summation formula - Guide
 - Formula to calculate vat in excel - Guide
 
3 responses
                
        
                    TrowaD
    
        
                    Posts
            
                
            2921
                
                            Registration date
            Sunday September 12, 2010
                            Status
            Contributor
                            Last seen
            December 27, 2022
            
            
                    555
    
    
                    
Oct 13, 2011 at 09:43 AM
    Oct 13, 2011 at 09:43 AM
                        
                    Hi Weenie,
Not sure what you mean by "displaying the formula on the graph".
Could you post (a sample of) your workbook using a filesharing site like www.speedyshare.com to see if I can help you?. I'm still using Excel 2003 so make sure the file extention is .xls.
Best regards,
Trowa
            Not sure what you mean by "displaying the formula on the graph".
Could you post (a sample of) your workbook using a filesharing site like www.speedyshare.com to see if I can help you?. I'm still using Excel 2003 so make sure the file extention is .xls.
Best regards,
Trowa
                        
                    here is the link from speedyshare
http://www.speedyshare.com/files/30748234/Booktofigureout.xlsx
I have a trendline, exponential to estimate Lifetime and I selected to "display the equation on chart". I can't seem to figure out how to copy the equation to a cell.
            http://www.speedyshare.com/files/30748234/Booktofigureout.xlsx
I have a trendline, exponential to estimate Lifetime and I selected to "display the equation on chart". I can't seem to figure out how to copy the equation to a cell.
                        
                    http://www.speedyshare.com/files/30748460/Booktofigureout.xls
Since you have 2003
hope it works
Thanks
            Since you have 2003
hope it works
Thanks
                
        
                    TrowaD
    
        
                    Posts
            
                
            2921
                
                            Registration date
            Sunday September 12, 2010
                            Status
            Contributor
                            Last seen
            December 27, 2022
            
            
                    555
    
    
    
Oct 17, 2011 at 08:53 AM
Oct 17, 2011 at 08:53 AM
    Hi Weenie,
The uploaded workbook only contains one sheet, named "Booktofigureout" which is completely empty.
Could you check the workbook and try again?
Best regards,
Trowa
    The uploaded workbook only contains one sheet, named "Booktofigureout" which is completely empty.
Could you check the workbook and try again?
Best regards,
Trowa
        
    
    
    
    
Dec 16, 2011 at 05:19 PM
=GROWTH(B3:B10,A3:A10,D14,TRUE)
The range will always start at row 3 but will be vary for last row (not always be row 10). Is there a way to write in VB to start at row 3 to last cell with a value for GROWTH function?
Thanks,
Weenie
Dec 19, 2011 at 09:47 AM
A great way to make static range dynamic is to use named ranges.
Right click on the sheets tab and choose view code.
Paste the following code:
Private Sub Worksheet_Change(ByVal Target As Range) Dim lRow, lRow2 As Integer lRow = Cells(Rows.Count, 1).End(xlUp).Row lRow2 = Cells(Rows.Count, 2).End(xlUp).Row Range("A3:A" & lRow).Name = "RangeA" Range("B3:B" & lRow2).Name = "RangeB" End SubWhenever you make a change in columns A and B of the sheet you are using, the used range in column A and B will be updated.
Now you need to use these named ranges in your formula:
=GROWTH(RangeB,RangeA,D14,TRUE)
NOTE: Make sure to make a change in column A and B for the code to apply the named ranges.
Also make sure that both ranges have the same size for the function to work.
Best regards,
Trowa
Dec 21, 2011 at 01:34 PM
Thanks a bunch,
Weenie