Results 1 to 2 of 2

VBA formula Property help!

Threaded View

  1. #1
    Registered User
    Join Date
    07-26-2013
    Location
    California, USA
    MS-Off Ver
    Excel 2013
    Posts
    1

    VBA formula Property help!

    Thanks in Advance! Okay guys, I have spend a whole day trying to figure this thing out but no luck I think I'm done with part 1 and 2, but I have no clue what to do with part 3. I know I'll have to use activecell.formula, but I'm not getting anywhere. I'm attaching the file as well. The questions that I'm trying to solve for my problems are as follows:

    1. The excel has sales totals for 12 months and 10 different products in the range B4:M14, write a VBA sub to enter formulas for the total in column N and row 14. Use R1C1 property to write formula.

    2. Repeat previous exercise, but now assume the data set could change, either by adding more months or adding products, or both. Using Formula R1C1, fill the row below data and the column to the right of the data with formulas for totals. (Hint, use string concatenation)

    3. Do the previous two exercises by using "formula" property, rather than formulaR1C1 property.




    Option Explicit
    
    Sub TotalProductSales()
        Dim numMonths As Long
        Dim numProducts As Long
        
        With Range("b4")
            numMonths = _
                Range(.Offset(0, 0), .End(xlToRight)).Columns.Count
            numProducts = _
                Range(.Offset(0, 0), .End(xlDown)).Rows.Count
                
            Range(.Offset(0, numMonths), _
                    .Offset(numProducts - 1, numMonths)).FormulaR1C1 = _
                "=sum(rc[-" & numMonths & "]:rc[-1])"
        End With
        
    End Sub
    
    
    Option Explicit
    
    Sub TotalMonthlySales()
        Dim numMonths As Long
        Dim numProducts As Long
        
     
        With Range("b4")
            
            If .End(xlDown).HasFormula = False Then
             numMonths = Range(.Offset(0, 0), _
                        .End(xlToRight)).Columns.Count
            numProducts = Range(.Offset(0, 0), _
                        .End(xlDown)).Rows.Count
            Range(.Offset(numProducts, 0), _
                    .Offset(numProducts, numMonths - 1)).FormulaR1C1 = _
                "=sum(r[-" & numProducts & "]c:r[-1]c)"
            Else
             numMonths = Range(.Offset(0, 0), _
                        .End(xlToRight)).Columns.Count
            numProducts = Range(.Offset(0, 0), _
                        .End(xlDown)).Rows.Count - 1
            Range(.Offset(numProducts, 0), _
                    .Offset(numProducts, numMonths - 1)).FormulaR1C1 = _
                "=sum(r[-" & numProducts & "]c:r[-1]c)"
            End If
            
           
        End With
        
        With Range("b4")
    
    Select Case .End(xlDown).HasFormula
    Case False
     numMonths = Range(.Offset(0, 0), _
                        .End(xlToRight)).Columns.Count
            numProducts = Range(.Offset(0, 0), _
                        .End(xlDown)).Rows.Count
            Range(.Offset(numProducts, 0), _
                    .Offset(numProducts, numMonths - 1)).FormulaR1C1 = _
                "=sum(r[-" & numProducts & "]c:r[-1]c)"
            Case True
           numMonths = Range(.Offset(0, 0), _
                        .End(xlToRight)).Columns.Count
            numProducts = Range(.Offset(0, 0), _
                        .End(xlDown)).Rows.Count - 1
            Range(.Offset(numProducts, 0), _
                    .Offset(numProducts, numMonths - 1)).FormulaR1C1 = _
                "=sum(r[-" & numProducts & "]c:r[-1]c)"
                End Select
                
            End With
    Attached Files Attached Files
    Last edited by Leith Ross; 07-26-2013 at 10:18 PM. Reason: Added Code Tags

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] User form - Can't set ControlSource property. Invalid property value.
    By Aland2929 in forum Excel Programming / VBA / Macros
    Replies: 11
    Last Post: 07-26-2013, 05:29 AM
  2. [SOLVED] Excel run-time error '381': Could not set the List property. Invalid property array index
    By eemiller1997 in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 12-20-2012, 12:48 PM
  3. Replies: 2
    Last Post: 06-11-2012, 03:03 PM
  4. Understanding Cells property vs. Offset property (implicit vs explicit references)
    By Wedge120 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 12-26-2010, 10:38 PM
  5. Runtime Error 380 – Could not set the list property. Invalid property value
    By BernzG in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-21-2005, 05:10 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1