So I actually got everything to work now!! I had forgotten to replace "Sheet1" with my sheet name....a good thing I dont need to be good at this to put food on the table.
I tried a run with 20 hands and it took pretty dead on 1min, so in one hour it would complete 1200 hands. This would be kind of a PITA and I am looking for ways to speed everything up a bit?
One thing that seems to add alot of steps is my custom function for extracting dollar sums. If I manually go through the code it has to run that function multiple times (guessing for each cell that is applicable).
Sub HandProcess888()
Application.ScreenUpdating = False
'''''''''''''''''''''''''
Do Until ThisWorkbook.Sheets("888Hands").Cells(90, 1).Value = "Stop"
Sheets("888Hands").Select
Range("A90").Select
Range(Selection, Selection.End(xlDown)).Select
''''''''''''''''''''''''''''
Selection.Copy
Range("A32").Select
ActiveSheet.Paste
'''''''''''''''''''''''''''''start of storing
Dim rowR As Range
Dim colR As Range
Set rowR = Sheets("888Hands").Range("O6")
Set colR = Sheets("888Hands").Range("O7")
Sheets("HandCombosStatsMyown").Select
Range("B6").Select
'Count, Raised/bet, called, collected
ActiveCell.Offset(rowR, colR).Range("A1") = Sheets("888Hands").Range("J17")
ActiveCell.Offset(rowR, colR).Range("B1") = Sheets("888Hands").Range("J15")
ActiveCell.Offset(rowR, colR).Range("C1") = Sheets("888Hands").Range("J14")
ActiveCell.Offset(rowR, colR).Range("D1") = Sheets("888Hands").Range("J16")
ActiveCell.Offset(rowR, colR).Range("A1").Select
ActiveCell.Offset(-2, 0).Range("A1:D1").Select
Selection.Copy
ActiveCell.Offset(1, 0).Range("A1").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
ActiveCell.Offset(1, 0).Range("A1:D1").Select
Selection.ClearContents
Sheets("888Hands").Select
Range("A32:A81").ClearContents
'''''''''''''''''''''''''''''''''
Range("A90").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Delete Shift:=xlUp
rows("90").Delete Shift:=xlUp
Loop
Application.ScreenUpdating = True
End Sub
Bookmarks