Getting sum of unknown number of rows

coolman

New Member
Joined
Nov 21, 2017
Messages
36
Hi I have been trying to get the total sum of unknown number of rows. However i could not get it to work from my code below. Any advice of how to get it work?

Private Sub CmdNextSection_Click()


lastrow = ActiveSheet.Range("b" & Rows.Count).End(xlUp).Row


With Cells(lastrow + 1, 5)
.Value = "Subtotal"
.WrapText = False
.Font.Bold = False
.Borders(xlEdgeLeft).LineStyle = xlContinuous
.Borders(xlEdgeRight).LineStyle = xlContinuous
.Borders(xlEdgeTop).LineStyle = xlContinuous
.Borders(xlEdgeBottom).LineStyle = xlContinuous
.VerticalAlignment = xlCenter
.HorizontalAlignment = xlRight
.Font.Bold = True
End With


With Cells(lastrow + 2, 5)
.Value = "GST"
.WrapText = False
.Font.Bold = False
.Borders(xlEdgeLeft).LineStyle = xlContinuous
.Borders(xlEdgeRight).LineStyle = xlContinuous
.Borders(xlEdgeTop).LineStyle = xlContinuous
.Borders(xlEdgeBottom).LineStyle = xlContinuous
.VerticalAlignment = xlCenter
.HorizontalAlignment = xlRight
.Font.Bold = True
End With


With Cells(lastrow + 3, 5)
.Value = "Grand Total"
.WrapText = False
.Font.Bold = False
.Borders(xlEdgeLeft).LineStyle = xlContinuous
.Borders(xlEdgeRight).LineStyle = xlContinuous
.Borders(xlEdgeTop).LineStyle = xlContinuous
.Borders(xlEdgeBottom).LineStyle = xlContinuous
.VerticalAlignment = xlCenter
.HorizontalAlignment = xlRight
.Font.Bold = True
End With


Subtotal = 0
For i = 19 To lastrow
With Cells(lastrow + 1, 6)
.Value = Subtotal + Range("i,6")
.WrapText = False
.Font.Bold = False
.Borders(xlEdgeLeft).LineStyle = xlContinuous
.Borders(xlEdgeRight).LineStyle = xlContinuous
.Borders(xlEdgeTop).LineStyle = xlContinuous
.Borders(xlEdgeBottom).LineStyle = xlContinuous
.VerticalAlignment = xlCenter
.HorizontalAlignment = xlRight
.Font.Bold = True
End With
Next i
End Sub
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Try this in place of your loop
Code:
With Cells(20000 + 1, 6)
.FormulaR1C1 = "=sum(r19c:r[-1]c)"
[COLOR=#ff0000].Value = .Value[/COLOR]
.WrapText = False
.Font.Bold = False
.Borders(xlEdgeLeft).LineStyle = xlContinuous
.Borders(xlEdgeRight).LineStyle = xlContinuous
.Borders(xlEdgeTop).LineStyle = xlContinuous
.Borders(xlEdgeBottom).LineStyle = xlContinuous
.VerticalAlignment = xlCenter
.HorizontalAlignment = xlRight
.Font.Bold = True
End With
If you want the formula rather than a hard value, remove the line in red
 
Upvote 0
ok noted. yes it works. thank you so much.

I have another thought

if i want the value from the userform to input into the activesheet and content page worksheet, is there any way to do it?
Also the content page will have to add new row on its own


Try this in place of your loop
Code:
With Cells(20000 + 1, 6)
.FormulaR1C1 = "=sum(r19c:r[-1]c)"
[COLOR=#ff0000].Value = .Value[/COLOR]
.WrapText = False
.Font.Bold = False
.Borders(xlEdgeLeft).LineStyle = xlContinuous
.Borders(xlEdgeRight).LineStyle = xlContinuous
.Borders(xlEdgeTop).LineStyle = xlContinuous
.Borders(xlEdgeBottom).LineStyle = xlContinuous
.VerticalAlignment = xlCenter
.HorizontalAlignment = xlRight
.Font.Bold = True
End With
If you want the formula rather than a hard value, remove the line in red
 
Upvote 0
First off, just realised I forgot to put last row back in. The first line should read
Code:
With Cells(lastrow+ 1, 6)
I don't really understand your new request, but is this what you're after.
Code:
Range("A" & lastrow + 1).Value=Textbox1.Value
 
Upvote 0

Forum statistics

Threads
1,216,085
Messages
6,128,733
Members
449,465
Latest member
TAKLAM

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top