Kirjautuminen

Haku

Tehtävät

Keskustelu: Ohjelmointikysymykset: VBA: Tietoa erillisestä Excel-tiedostosta

ThaRez [21.05.2008 12:37:40]

#

Heippa!
Yritän luoda excel macron excel tiedostoon joka lukisi tietoa toisesta excel tiedostosta. Valitettavasti VB taitoni ovat puutteliset joten en tiedä miten. Arvostaisin jos joku voisi auttaa.
Riku

neau33 [21.05.2008 13:14:20]

#

Heippa ThaRez!

tässä yksi tapa...

Private Sub CommandButton1_Click()
  Dim this As Workbook, that As Workbook
  Set this = ActiveWorkbook
  Application.ScreenUpdating = False
  Workbooks.Open (Environ("userprofile") & "\Työpöytä\Testi.xls")
  Set that = ActiveWorkbook
  that.Sheets(1).Activate
  ActiveWorkbook.ActiveSheet.Range("A1:" & _
  ActiveWorkbook.ActiveSheet.Cells.SpecialCells( _
  xlCellTypeLastCell).Address).Copy Destination:= _
  this.Sheets(1).Range("A1:" & _
  ActiveWorkbook.ActiveSheet.Cells.SpecialCells( _
  xlCellTypeLastCell).Address)
  this.Activate: that.Close
  Set this = Nothing: Set that = Nothing
  Application.ScreenUpdating = True

End Sub

Vastaus

Aihe on jo aika vanha, joten et voi enää vastata siihen.

Tietoa sivustosta