VBA to Create over 200 Tabs & a Scatter Graph

VBA learner ITG

Active Member
Joined
Apr 18, 2017
Messages
272
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
Thank you for taking the time to read my post.

Im sure everyone has been asked to create multiple tabs at some point in their life while working with Excel, However I have been asked to create several hundred and i don't really want to spend my weekend loosing my marbles.

Please can I get your advice on how to best achieve this.

As part of requirement i have been asked to create a Scatter Graph based on the data in column A & B.

I guess i have 2 requests.

1. Create Multiple Tabs based on the number of URN e.g 1 > 200 in Column C.
2. Create a scatter graph with the data in column A & B of the worksheet.


Any Advice or suggestion would be greatly appreciated.
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Hi,
I'd have a look, if you provide a sample file including a chart with all specified layout, ie. flexible title.

There is no promise at all and I reject all public filehoster. Would you use
Excel Help
with mentioning the crossposting.

regards
 
Upvote 0
Hi,

did I made a comment about filehoster????

So, I generated a dataset and a series of scatterchart. A Makro for copying the formats of the first to all others is prepared, but not yet done.

Code:
Sub many_Charts()

    lr = Cells(Rows.Count, 1).End(xlUp).Row
    ls = Cells(1, Columns.Count).End(xlToLeft).Column
For c = 2 To ls
    Union(Range(Cells(1, 1), Cells(lr, 1)), Range(Cells(1, c), Cells(lr, c))).Select
    Cells(1, c).Activate
    Col = "Tabelle1!$" & Chr(64 + c) & "1:$" & Chr(64 + c) & "$" & lr
    ActiveSheet.Shapes.AddChart2(240, xlXYScatterSmooth).Select
    ActiveChart.SetSourceData Source:=Range( _
        "Tabelle1!$A$1:$A$11," & Col)
    ActiveChart.Location Where:=xlLocationAsNewSheet
    ActiveSheet.Name = ActiveChart.ChartTitle.Text
    Sheets("Tabelle1").Select
Next c
End Sub

Sub Format_Copy()
'
    ActiveChart.ChartArea.Select
    ActiveChart.ChartArea.Copy
    Sheets("Y2").Select
    ActiveChart.PasteSpecial Format:=2
End Sub

Sub Create_DataSet()
Range("A1") = "x"
For i = 1 To 5
    Cells(1, i + 1) = "Y" & i
Next i
Range("A2:A11").Formula = "=row()-1"
Range("B2:F11").Formula = "=RANDBETWEEN(10,100)"
with activesheet.usedrange 'not testet
.value = .value
end with
End Sub

regards
 
Upvote 0

Forum statistics

Threads
1,216,767
Messages
6,132,599
Members
449,738
Latest member
brianm3y3r

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