Need large spreadsheet - can you help?

D

DW

I need to locate a rather large spreadsheet in which when you run the
macro it will take about 5 minutes. The purpose is for this to be a test
file in one of four are running to push the cpu usage to 95 > 100% max.
This is a test to see how well another program will handle the low -
none cpu usage time.

Thanks ahead of time.
 
J

Joel

Do something easy

for i = 1 to 100000000
for rowcount = 1 to Rows.count
for colcount = 1 to columns.count

cells(RowCount,Colcount) = i
next ColCount
next forcount
next i
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top