No problem!
To read all the lines for export (newly added code has the 5 stars behind it):
Code:
Dim lastRow As Long '*****
Dim rngExport As Range '*****
comboValue = ComboBox1.Value 'retrieve value of combo box
Set wb = Workbooks("munka.xlsm") 'the name of my workbook
Set ws = wb.Sheets("Munka1") 'name of my sheet
Set rngCopy = ws.Range("a4", "c4") 'where to copy from
nextRow = Range("a" & ws.Rows.Count).End(xlUp).Row + 1
Set rngPaste = ws.Range("a" & nextRow) 'where to copy to
rngCopy.Copy
rngPaste.PasteSpecial xlPasteValues 'changed this
ws.Range("d" & nextRow).Value = comboValue 'use value from combo
lastRow = ws.Range("a" & ws.Rows.Count).End(xlUp).Row '*****
Set rngExport = ws.Range("a9", "d" & lastRow) '*****
For Each ce In rngExport '*****
'code here '*****
Next ce '*****