Page 1 of 2 12 LastLast
Results 1 to 40 of 44

Thread: SUM of selected cell range

  1. #1
    Lively Member
    Join Date
    Jan 12
    Posts
    71

    SUM of selected cell range

    Hi

    I need to calculate SUM of selected cell range e.g.

    PB YU Bud PBud Actual TC
    Sam 120 130 190 130 150
    James 130 150 110 120 130
    Raj 150 120 120 100 120
    =================================
    Total 400 400 420 350 400

    How to calculate the total using Ms Access VBA? Also to how draw "=====" line?

  2. #2
    Super Moderator koolsid's Avatar
    Join Date
    Feb 05
    Location
    Mumbai, India
    Posts
    11,415

    Re: SUM of selected cell range

    Welcome to the forums Ria

    Are you trying to automate Excel from Access VBA? If yes, then how are you binding with Excel? LateBinding or EarlyBinding?
    A good exercise for the Heart is to bend down and help another up...
    Please Mark your Thread "Resolved", if the query is solved

    Microsoft MVP: 2011 - Till Date IMP Links : Acceptable Use Policy, FAQ

    MyGear:
    Sony VGN-FZ27G with a triple boot between (XP+Office 2003+VB6), (VISTA+Office 2007+VS2008) and (Win7+Office 2010+VS2010) || Sony VPCCB-45FN with a Win7+Office 2010+VS2010. VM: (XP+Office 2003+VB6), (VISTA+Office 2007+VS2008), (Win8+Office 2010+VS2012) || Mac Book Pro (10.6.8) with Office 2011

  3. #3
    Just a Member! seenu_1st's Avatar
    Join Date
    Aug 07
    Location
    India
    Posts
    2,156

    Re: SUM of selected cell range

    i think OP needs to do it in Access itself.
    Seenu

    If this post is useful, pls don't forget to Rate this post.
    Pls mark thread as resolved once ur problem solved.
    ADO Tutorial Variable types SP6 for VB6, MsFlexGrid fast fill, Sorting Algorithms


  4. #4
    Lively Member
    Join Date
    Jan 12
    Posts
    71

    Re: SUM of selected cell range

    Hi Sid,

    Yes, I'm trying to automate Excel from Access VBA. I have all the data in Access and executing the SQL in Access writing data in particular cells and after that I need to sum these cells. And these number of columns need to dynamic e.g. it can be =SUM(B3:B7) or =SUM(B3:B10) depends on number of records fetched by SQL.

  5. #5
    Lively Member
    Join Date
    Jan 12
    Posts
    71

    Re: SUM of selected cell range

    Hi Seenu,

    Sorry I did not get you. Can you please send me some sample code for this?

  6. #6
    Just a Member! seenu_1st's Avatar
    Join Date
    Aug 07
    Location
    India
    Posts
    2,156

    Re: SUM of selected cell range

    Ria, i never worked with access vba, can u attach a sample file of access and explain where do u need to show the sum of values.
    Seenu

    If this post is useful, pls don't forget to Rate this post.
    Pls mark thread as resolved once ur problem solved.
    ADO Tutorial Variable types SP6 for VB6, MsFlexGrid fast fill, Sorting Algorithms


  7. #7
    Lively Member
    Join Date
    Jan 12
    Posts
    71

    Re: SUM of selected cell range

    Hi

    I'm using following method to populate the data in Excel Sheet

    Code:
        For count = 1 To recount
            ColumnStart = 1
            objXLSheet.Cells(RowStart, ColumnStart) = rsTmp![Banker]
            ColumnStart = ColumnStart + 1
            objXLSheet.Cells(RowStart, ColumnStart) = rsTmp![RevenueYTD]
            ColumnStart = ColumnStart + 1
            objXLSheet.Cells(RowStart, ColumnStart) = rsTmp![AnnuRevenue]
            ColumnStart = ColumnStart + 1
            objXLSheet.Cells(RowStart, ColumnStart) = rsTmp![RevenueTCY]
            ColumnStart = ColumnStart + 1
            objXLSheet.Cells(RowStart, ColumnStart) = rsTmp![RevenuePFY]
            ColumnStart = ColumnStart + 1
            objXLSheet.Cells(RowStart, ColumnStart) = rsTmp![AnnuVsBud]
            ColumnStart = ColumnStart + 1
            objXLSheet.Cells(RowStart, ColumnStart) = rsTmp![AnnuVsPFYRev]
            ColumnStart = ColumnStart + 1
            ..............
            ..............
            ..............
            ..............
            ..............
    
            ColumnStart = ColumnStart + 1
            objXLSheet.Cells(RowStart, ColumnStart) = rsTmp![AnnuActRatio]
    
            If rsTmp.EOF Then Exit For
            RowStart = RowStart + 1
            rsTmp.MoveNext
        Next count
    Data will be populated in around 80 columns and I need the SUM for all these columns. I don't want to SUM one by one cell using below function

    Code:
    .Range("B11").Formula = "=Sum(B6:B10)"
    Pls let me the better way to do this....

  8. #8
    Lively Member
    Join Date
    Jan 12
    Posts
    71

    Re: SUM of selected cell range

    Pls find attached here just a sample file

  9. #9
    Just a Member! seenu_1st's Avatar
    Join Date
    Aug 07
    Location
    India
    Posts
    2,156

    Re: SUM of selected cell range

    Ria, nothing was attached, u can try this code to sum, 1 to 80 is column
    Code:
    Private Sub CommandButton1_Click()
    Dim LastRow As Long
    For i = 1 To 80
        LastRow = Cells(Rows.Count, i).End(xlUp).Row
        Cells(LastRow + 1, i) = WorksheetFunction.Sum(Range(Cells(1, i), Cells(LastRow, i)))
    Next
    End Sub
    Seenu

    If this post is useful, pls don't forget to Rate this post.
    Pls mark thread as resolved once ur problem solved.
    ADO Tutorial Variable types SP6 for VB6, MsFlexGrid fast fill, Sorting Algorithms


  10. #10
    Lively Member
    Join Date
    Jan 12
    Posts
    71

    Re: SUM of selected cell range

    Pls find attached file
    Attached Files Attached Files
    Last edited by riaarora; Jul 19th, 2012 at 08:17 AM. Reason: need to attach the file

  11. #11
    Just a Member! seenu_1st's Avatar
    Join Date
    Aug 07
    Location
    India
    Posts
    2,156

    Re: SUM of selected cell range

    nowhere it is attached, pls attach again
    Seenu

    If this post is useful, pls don't forget to Rate this post.
    Pls mark thread as resolved once ur problem solved.
    ADO Tutorial Variable types SP6 for VB6, MsFlexGrid fast fill, Sorting Algorithms


  12. #12
    Super Moderator koolsid's Avatar
    Join Date
    Feb 05
    Location
    Mumbai, India
    Posts
    11,415

    Re: SUM of selected cell range

    Nice one Seenu Two suggestions.

    1) When working with sheets fully `Qualify` your objects else the code will work with the "Active" sheet
    2) The above is also true and crucial when finding last row. See the EXTRA DOT before Rows.Count. This usually causes a problem when you open xls file in compatibility mode and don't use the EXTRA DOT.

    Something like this

    Code:
        With objXLSheet
            LastRow = .Cells(.Rows.Count, i).End(xlUp).Row
        End With
    A good exercise for the Heart is to bend down and help another up...
    Please Mark your Thread "Resolved", if the query is solved

    Microsoft MVP: 2011 - Till Date IMP Links : Acceptable Use Policy, FAQ

    MyGear:
    Sony VGN-FZ27G with a triple boot between (XP+Office 2003+VB6), (VISTA+Office 2007+VS2008) and (Win7+Office 2010+VS2010) || Sony VPCCB-45FN with a Win7+Office 2010+VS2010. VM: (XP+Office 2003+VB6), (VISTA+Office 2007+VS2008), (Win8+Office 2010+VS2012) || Mac Book Pro (10.6.8) with Office 2011

  13. #13
    Just a Member! seenu_1st's Avatar
    Join Date
    Aug 07
    Location
    India
    Posts
    2,156

    Re: SUM of selected cell range

    sidhu, actuly i just made it for an example purpose only, anyhw u pointed good things.

    Ria, do u need to sum the Rows or Columns?
    Seenu

    If this post is useful, pls don't forget to Rate this post.
    Pls mark thread as resolved once ur problem solved.
    ADO Tutorial Variable types SP6 for VB6, MsFlexGrid fast fill, Sorting Algorithms


  14. #14
    Lively Member
    Join Date
    Jan 12
    Posts
    71

    Re: SUM of selected cell range

    Hi Sid / Seenu,

    I got below error

    Compile error:
    Invalid or unqualified reference.

    Code:
        For i = 1 To 80
            RowEnd = .Cells(.Rows.count, i).End(xlUp).Row
            Cells(RowEnd + 1, i) = WorksheetFunction.SUM(range(Cells(1, i), Cells(RowEnd, i)))
        Next

  15. #15
    Just a Member! seenu_1st's Avatar
    Join Date
    Aug 07
    Location
    India
    Posts
    2,156

    Re: SUM of selected cell range

    r u running this code from excel?
    Seenu

    If this post is useful, pls don't forget to Rate this post.
    Pls mark thread as resolved once ur problem solved.
    ADO Tutorial Variable types SP6 for VB6, MsFlexGrid fast fill, Sorting Algorithms


  16. #16
    Super Moderator koolsid's Avatar
    Join Date
    Feb 05
    Location
    Mumbai, India
    Posts
    11,415

    Re: SUM of selected cell range

    Ria, I don't see the whole code but my guess is that you have not specified the sheet.

    Code:
        With objXLSheet
            For i = 1 To 80
                RowEnd = .Cells(.Rows.count, i).End(xlUp).Row
                .Cells(RowEnd + 1, i) = WorksheetFunction.SUM(.range(Cells(1, i), .Cells(RowEnd, i)))
            Next
        End With
    A good exercise for the Heart is to bend down and help another up...
    Please Mark your Thread "Resolved", if the query is solved

    Microsoft MVP: 2011 - Till Date IMP Links : Acceptable Use Policy, FAQ

    MyGear:
    Sony VGN-FZ27G with a triple boot between (XP+Office 2003+VB6), (VISTA+Office 2007+VS2008) and (Win7+Office 2010+VS2010) || Sony VPCCB-45FN with a Win7+Office 2010+VS2010. VM: (XP+Office 2003+VB6), (VISTA+Office 2007+VS2008), (Win8+Office 2010+VS2012) || Mac Book Pro (10.6.8) with Office 2011

  17. #17
    PowerPoster
    Join Date
    Dec 04
    Posts
    18,531

    Re: SUM of selected cell range

    @ sid
    wouldn't he want to keep all the totals on the same row?

    could always put the formula into the cells, to allow sheet editing later
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  18. #18
    Super Moderator koolsid's Avatar
    Join Date
    Feb 05
    Location
    Mumbai, India
    Posts
    11,415

    Re: SUM of selected cell range

    Yes you are right on both the accounts.

    I already thought of the first part but didn't mention it as I was waiting for her to get back first.

    Regarding the second (using Formulas) that is again up to her but makes sense if she wants to edit the sheet later manually.
    A good exercise for the Heart is to bend down and help another up...
    Please Mark your Thread "Resolved", if the query is solved

    Microsoft MVP: 2011 - Till Date IMP Links : Acceptable Use Policy, FAQ

    MyGear:
    Sony VGN-FZ27G with a triple boot between (XP+Office 2003+VB6), (VISTA+Office 2007+VS2008) and (Win7+Office 2010+VS2010) || Sony VPCCB-45FN with a Win7+Office 2010+VS2010. VM: (XP+Office 2003+VB6), (VISTA+Office 2007+VS2008), (Win8+Office 2010+VS2012) || Mac Book Pro (10.6.8) with Office 2011

  19. #19
    PowerPoster
    Join Date
    Dec 04
    Posts
    18,531

    Re: SUM of selected cell range

    Also to how draw "=====" line?
    can either put into cells on row above totals as text, or set top border of range of cells containing totals


    for her to
    missed that part, apology
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  20. #20
    Lively Member
    Join Date
    Jan 12
    Posts
    71

    Re: SUM of selected cell range

    Still getting error. Please find below the code I'm using

    Code:
    Dim TempString As String
    
        For count = 1 To recount
            ColumnStart = 1
            objXLSheet.Cells(RowStart, ColumnStart) = rsTmp![Banker]
            ColumnStart = ColumnStart + 1
            objXLSheet.Cells(RowStart, ColumnStart) = rsTmp![RevenueYTD]
            ColumnStart = ColumnStart + 1
            objXLSheet.Cells(RowStart, ColumnStart) = rsTmp![AnnuRevenue]
            ColumnStart = ColumnStart + 1
            objXLSheet.Cells(RowStart, ColumnStart) = rsTmp![RevenueTCY]
            ColumnStart = ColumnStart + 1
            objXLSheet.Cells(RowStart, ColumnStart) = rsTmp![RevenuePFY]
            ColumnStart = ColumnStart + 1
            objXLSheet.Cells(RowStart, ColumnStart) = rsTmp![AnnuVsBud]
            ColumnStart = ColumnStart + 1
            objXLSheet.Cells(RowStart, ColumnStart) = rsTmp![AnnuVsPFYRev]
            ColumnStart = ColumnStart + 1
            ..............
            ..............
            ..............
            ..............
            ..............
    
            ColumnStart = ColumnStart + 1
            objXLSheet.Cells(RowStart, ColumnStart) = rsTmp![AnnuActRatio]
    
            If rsTmp.EOF Then Exit For
            RowStart = RowStart + 1
            rsTmp.MoveNext
        Next count
    
        rsTmp.Close
        Set rsTmp = Nothing
        
        'For double top line and single bottom line for Subtotal
        TempString = "A" & RowStart & ":" & "T" & RowStart
        boldFontSize (TempString)
        applyDoubleTotalLine (TempString)
       
    'Getting Error over here
    ******Error*************
    Compile error:
    Invalid or unqualified reference.
    ************************
        For i = 1 To 80
            RowEnd = .Cells(.Rows.count, i).End(xlUp).Row
            Cells(RowEnd + 1, i) = WorksheetFunction.SUM(range(Cells(1, i), Cells(RowEnd, i)))
        Next
    I tried below code for sum, that works but this always calculate from R2 till last line
    Code:
    objXLSheet.range(strRange).FormulaR1C1 = "=SUM(R2C:R[-1]C)"
    I want to chnage this to something like below

    Code:
    objXLSheet.range(strRange).FormulaR1C1 = "=SUM(" & TempString & ":R[-1]C)"
    Please help

  21. #21
    Super Moderator koolsid's Avatar
    Join Date
    Feb 05
    Location
    Mumbai, India
    Posts
    11,415

    Re: SUM of selected cell range

    What exact error are you getting?
    A good exercise for the Heart is to bend down and help another up...
    Please Mark your Thread "Resolved", if the query is solved

    Microsoft MVP: 2011 - Till Date IMP Links : Acceptable Use Policy, FAQ

    MyGear:
    Sony VGN-FZ27G with a triple boot between (XP+Office 2003+VB6), (VISTA+Office 2007+VS2008) and (Win7+Office 2010+VS2010) || Sony VPCCB-45FN with a Win7+Office 2010+VS2010. VM: (XP+Office 2003+VB6), (VISTA+Office 2007+VS2008), (Win8+Office 2010+VS2012) || Mac Book Pro (10.6.8) with Office 2011

  22. #22
    Lively Member
    Join Date
    Jan 12
    Posts
    71

    Re: SUM of selected cell range

    Hi Sid,

    I got below error

    Compile error:
    Invalid or unqualified reference.

  23. #23
    Super Moderator koolsid's Avatar
    Join Date
    Feb 05
    Location
    Mumbai, India
    Posts
    11,415

    Re: SUM of selected cell range

    Ok which line do you get the error in?
    A good exercise for the Heart is to bend down and help another up...
    Please Mark your Thread "Resolved", if the query is solved

    Microsoft MVP: 2011 - Till Date IMP Links : Acceptable Use Policy, FAQ

    MyGear:
    Sony VGN-FZ27G with a triple boot between (XP+Office 2003+VB6), (VISTA+Office 2007+VS2008) and (Win7+Office 2010+VS2010) || Sony VPCCB-45FN with a Win7+Office 2010+VS2010. VM: (XP+Office 2003+VB6), (VISTA+Office 2007+VS2008), (Win8+Office 2010+VS2012) || Mac Book Pro (10.6.8) with Office 2011

  24. #24
    PowerPoster
    Join Date
    Dec 04
    Posts
    18,531

    Re: SUM of selected cell range

    I tried below code for sum, that works but this always calculate from R2 till last line
    so what number of rows do you want to sum?

    objXLSheet.range(strRange).FormulaR1C1 = "=SUM(" & TempString & ":R[-1]C)"
    what value has tempstring? should be something like "R" & startrow & "C"
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  25. #25
    Lively Member
    Join Date
    Jan 12
    Posts
    71

    Re: SUM of selected cell range

    Hi Sid,

    Getting error at 2nd line

    .Cells(.Rows highlighted

    and errors is
    Complie Error:
    Invalid or unqualified reference



    Code:
        For i = 1 To 80
            RowEnd = .Cells(.Rows.count, i).End(xlUp).Row 
            Cells(RowEnd + 1, i) = WorksheetFunction.SUM(range(Cells(1, i), Cells(RowEnd, i)))
        Next

  26. #26
    Lively Member
    Join Date
    Jan 12
    Posts
    71

    Re: SUM of selected cell range

    Hi Sid,

    Can you please help to explain if I need to calculated sum from different range e.g. Row 15 to Row 20, and later using same code Row 23 to 28 and so on.

    Thanks a lot for the help

  27. #27
    Just a Member! seenu_1st's Avatar
    Join Date
    Aug 07
    Location
    India
    Posts
    2,156

    Re: SUM of selected cell range

    may be With Block missing
    Code:
    With sheetname
    'code
    End With
    r u running this code from excel or access?
    Seenu

    If this post is useful, pls don't forget to Rate this post.
    Pls mark thread as resolved once ur problem solved.
    ADO Tutorial Variable types SP6 for VB6, MsFlexGrid fast fill, Sorting Algorithms


  28. #28
    Lively Member
    Join Date
    Jan 12
    Posts
    71

    Re: SUM of selected cell range

    For i = 1 To 80

    Does it mean this sum will copy in 80 columns? From column 1 till column number 80, right?

  29. #29
    Lively Member
    Join Date
    Jan 12
    Posts
    71

    Re: SUM of selected cell range

    Hi Pete,

    TempString return the value: B8:T8

    TempString = "B" & RowStart & ":" & "T" & RowStart

    depending where Sum need to calculated.

    Later in the code TempString will return

    B28:J28

  30. #30
    Just a Member! seenu_1st's Avatar
    Join Date
    Aug 07
    Location
    India
    Posts
    2,156

    Re: SUM of selected cell range

    Quote Originally Posted by riaarora View Post
    For i = 1 To 80

    Does it mean this sum will copy in 80 columns? From column 1 till column number 80, right?
    yes, see the attached excel file for example.
    Attached Files Attached Files
    Seenu

    If this post is useful, pls don't forget to Rate this post.
    Pls mark thread as resolved once ur problem solved.
    ADO Tutorial Variable types SP6 for VB6, MsFlexGrid fast fill, Sorting Algorithms


  31. #31
    Lively Member
    Join Date
    Jan 12
    Posts
    71

    Re: SUM of selected cell range

    Quote Originally Posted by westconn1 View Post
    so what number of rows do you want to sum?


    what value has tempstring? should be something like "R" & startrow & "C"
    Getting error (Expected: End of Statement) for following

    objXLSheet.range(sRange).FormulaR1C1 = "=SUM(" "R" & startrow & "C" ":R[-1]C)"

  32. #32
    PowerPoster
    Join Date
    Dec 04
    Posts
    18,531

    Re: SUM of selected cell range

    try
    vb Code:
    1. objXLSheet.range(sRange).FormulaR1C1 = "=SUM(R" & startrow & "C:R[-1]C)"
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  33. #33
    Lively Member
    Join Date
    Jan 12
    Posts
    71

    Re: SUM of selected cell range

    Hi Pete,

    Excellent! That works. One more question, how to get the total for range on columns?

    PB YU Bud PBud Actual TC Total
    Sam 2 3 1 5 4 15
    Bob 1 0 5 0 0 6
    Raj 1 0 2 0 0 3
    ==========================
    Total 4 3 8 5 4 24

    Thanks a lot for the help....

  34. #34
    PowerPoster
    Join Date
    Dec 04
    Posts
    18,531

    Re: SUM of selected cell range

    One more question, how to get the total for range on columns?
    i don't understand, i thought that was what you already did for each section
    if you sum the columns now, it will include the sum for each section as well as the sum of all rows
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  35. #35
    Lively Member
    Join Date
    Jan 12
    Posts
    71

    Re: SUM of selected cell range

    I want to calculate total horizontally and vertically in both Currently doing only one way

  36. #36
    PowerPoster
    Join Date
    Dec 04
    Posts
    18,531

    Re: SUM of selected cell range

    use the same for summing rows as you do for columns, just change the RC values to suit, loop rows rather than columns
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  37. #37
    Lively Member
    Join Date
    Jan 12
    Posts
    71

    Re: SUM of selected cell range

    Thanks a lot Pete. This works fine.

    Code:
    Sub calculateRowSubtotal(sRange As String, sumRowStart As Integer)
        With objXLSheet.range(sRange)
            objXLSheet.range(sRange).FormulaR1C1 = "=SUM(RC[-12]:RC[-1])"
        End With
    End Sub
    Only issue is this shows the formula in the cell. What about if want to show actual number only instead of formula in cells?

  38. #38
    PowerPoster
    Join Date
    Dec 04
    Posts
    18,531

    Re: SUM of selected cell range

    Only issue is this shows the formula in the cell.
    works correctly for me
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  39. #39
    Lively Member
    Join Date
    Jan 12
    Posts
    71

    Re: SUM of selected cell range

    It works fine for me as well Issue is I don't want SUM(C10:C20) in cell I want only value e.g. 10902

  40. #40
    Just a Member! seenu_1st's Avatar
    Join Date
    Aug 07
    Location
    India
    Posts
    2,156

    Re: SUM of selected cell range

    Ria, the post #30 dosent help?
    Seenu

    If this post is useful, pls don't forget to Rate this post.
    Pls mark thread as resolved once ur problem solved.
    ADO Tutorial Variable types SP6 for VB6, MsFlexGrid fast fill, Sorting Algorithms


Page 1 of 2 12 LastLast

Posting Permissions

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