Hi,
I'm having trouble with this code:
Code
Sub Macro8_SELECT_S14()
'
' Macro8_SELECT_S14 Macro
'
'
Sheets("Hights").Select
ActiveWindow.SmallScroll Down:=9
Range("G27:G30").Select
Selection.Copy
ActiveWindow.SmallScroll Down:=-33
Range("A1").Select
Sheets("STICKandTEMP").Select
End Sub
Sub Macro9_SELECT_S13()
'
' Macro9_SELECT_S13 Macro
'
'
Sheets("Hights").Select
ActiveWindow.SmallScroll Down:=9
Range("F27:F30").Select
Selection.Copy
ActiveWindow.SmallScroll Down:=-30
Range("A1").Select
Sheets("STICKandTEMP").Select
End Sub
Display More
There are 9 modules like this one.
When i run code to copy data(G27:G30), and go to the other workbook to paste data, paste code in other book:
Code
Private Sub pASTE_SPECIAL()
On Error GoTo ifERROR
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=True
ifERROR:
Exit Sub
End Sub
then i get error in excel turning coma decimal separator(EUROPA) into dot( . ) !!!
[ATTACH=CONFIG]69162[/ATTACH][ATTACH=CONFIG]69163[/ATTACH]
also posted here: https://answers.microsoft.com/…-b478-51a23fd44bf2?page=2