0
我有一個UserForm,我不想複製三個不同的值,並將它們放在我的新表中,並在每個值的前面加上一個解釋,但它不起作用,有人能幫我理解爲什麼嗎?如何將UserForm中的值導出到新的Excel表單中?
Private Sub cmbExport_Click()
Sheets.Add(After:=Sheets(Sheets.Count)).Name = "Export"
Export.Range("A1").Value = "Riskpremie"
Export.Range("A2").Value = "Teknisk premie"
Export.Range("A3").Value = "Slutpremie"
Export.Range("B1").Value = TxtRiskpremie.Value
Export.Range("B2").Value = TxtTeknpremie.Value
Export.Range("B3").Value = txtSlutpremie.Value
End Sub
預先感謝您!
嘗試使用'表( 「Export」)。Range(「A1」)。Value'而不是'Export.Range..'。 – Soulfire
應該總是說錯誤發生在哪個代碼行。你應該使用'WorkSheets(「Export」)。Range(「A1 ......)'bla-bla – MacroMarc