How to use VBA userform to sum accross worksheets.

OtterBA

New Member
Joined
May 2, 2011
Messages
13
I have workbook that has a tab for each week in a month. I have used a VBA userform with a multiselect listbox to allow the user to select multiple worksheets to roll-up into a summary worksheet. My problem is writting the sum formula to accept the listbox's array.
Here is my code. I have used the loop portion in other projects to copy and move worksheets to new workbooks and it works fine.

Private Sub CommandButton1_Click()
Worksheets(Worksheets.Count).Copy after:=Worksheets(Worksheets.Count)
ActiveSheet.Name = TextBox1.Text
Range("B2:H26,K2:O26,B32:k55").Select
Selection.ClearContents
Range("A1").Select
Selection.FormulaR1C1 = TextBox1.Text
Dim iloop As Integer
Dim arr()
Dim cntr As Variant
cntr = 0
For iloop = 1 To ListBox1.ListCount
If ListBox1.Selected(iloop - 1) = True Then
ListBox1.AddItem ListBox1.List(iloop - 1)
cntr = cntr + 1
ReDim Preserve arr(cntr)
arr(cntr) = ListBox1.List(iloop - 1)
End If
Next
Range("B2:H26,K2:O26,B32:k55").Select
Selection.FormulaR1C1 = "=sum(worksheets(arr(cntr))!RC)" 'this is where I am having my summing multiple sheets issues.
Unload UserForm1
End Sub
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
That won't work. The correct (worksheet) syntax for that type of formula is

=SUM(Sheet1:Sheet12!A1)

Please use code tags when posting code

[code]
your code here
[/code]
 
Upvote 0
Thanks but I know that formula. I need something with more flexabiity for variable worksheets that can be selected in the multiselect listbox.
 
Upvote 0
I was afraid of that. I've used sum(start:end!a1) alot. So how would I loop to sum the worksheets selected from the listbox?
 
Upvote 0
I just thought of a work around. I could create and remove the start and end worksheets every time the form is used to do the calculations the do a copy paste values but it would be nice to have a more effiecient macro than creating and deleting worksheets everytime.
 
Upvote 0
Try like this

Code:
For i = 0 To ListBox1.ListCount - 1
If ListBox1.Selected(i) Then
    mytotal = mytotal + Sheets(ListBox1.List(i)).Range("A1").Value
End If
Next i
 
Upvote 0
I am having problems with the line
mytotal = mytotal + Sheets(ListBox1.List(i)).Range("A1").Value
It isn't doing anything.
Dim iloop As Integer
Dim arr()
Dim cntr As Variant
cntr = 0
For iloop = 1 To ListBox1.ListCount
If ListBox1.Selected(iloop - 1) = True Then
ListBox1.AddItem ListBox1.List(iloop - 1)
cntr = cntr + 1
ReDim Preserve arr(cntr)
arr(cntr) = ListBox1.List(iloop - 1)
End If

Next
For i = 0 To ListBox1.ListCount - 1
If ListBox1.Selected(i) Then
mytotal = mytotal + Sheets(ListBox1.List(i)).Range("B4").Value
End If
Next i
I am a novice with VBA and have moments of wisdom but those are limited.
 
Upvote 0

Forum statistics

Threads
1,216,380
Messages
6,130,274
Members
449,570
Latest member
TomMacca52

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