Karena pertanyaan anda tidak jelas, jadi saya mencoba menjawab berdasarkan asumsi. Access memang bisa mengimport data dari Excel, namun konversi ke database akan melalui proses validasi data. Umumnya masalah ada di sini. Saran saya, stepnya: 1. Import data dari excel ke table temporary yg strukturnya sudah dibuat sama dg table asli, tetapi tanpa validasi (supaya proses import tdk terhambat). Validasi umumnya dilakukan oleh primary key, data type, dan field length. 2. Lakukan validasi data pada table temp sehingga siap utk di-append ke table asil 3. delete record pada table asli berdasarkan primary key yg ditemukan di table temp 4. append record dari table temp ke table asli dimana primary key-nya tdk terdapat lagi di table asli.
Proc di atas hanya akan meng-append data yg valid berdasarkan primary key. Remind: urusan konversi data dari excel ke access tidak mudah, butuh kesabaran dan ketelatenan. anda harus menemukan your way to do the task. Good luck, Haer Talib On Dec 22, 2007 5:24 PM, joeh2_007 <[EMAIL PROTECTED]> wrote: > Mas Haer, Importnya dengan cara Get external data yang ada di menu > file dan data yang di import dalam bentuk excel. > > Kalau dari asumsi mas Haer berarti harus di import dahulu ke new > table baru sebagai perantara baru di append ke tablenya. > > --- In [email protected], "Haer Talib" <[EMAIL PROTECTED]> > wrote: > > > > Importnya dengan cara apa dan dari mana ya? > > > > Asumsi: import dari table lain yang strukturnya sama. > > Step 1: Delete record lama where primarykeynya = primarykey data > baru > > Step 2: Append record from table data baru > > > > Haer > > > > > > > > On Dec 18, 2007 4:35 PM, <[EMAIL PROTECTED]> wrote: > > > > > Dear pakar access, > > > Saya sedang buat table di mana data di table itu harus selalu > terupdate. > > > Gimana caranya agar table di import data maka data yang lama di > table tsb > > > langsung terdelete dan di update dengan data yang baru di import. > > > > > > Thank's > > > > > > > > > > > > > > > The contents of this e-mail and attachments are confidential and > subject > > > to legal privilege. If you are not the intended recipient, you > are strictly > > > prohibited and may be unlawful to use, copy, store, distribute, > disclose or > > > communicate any part of it to others and you are obliged to > return it > > > immediately to sender or notify us and delete the e-mail and any > attachments > > > from your system. PT BANK PERMATA TBK and subsidiaries do not > accept > > > liability for loss or damage resulting from computer viruses. The > integrity > > > of e-mail across the internet cannot be guaranteed and PT BANK > PERMATA TBK > > > will not accept liability for any claims arising as a result of > the use of > > > this medium for transmissions by or to PT BANK PERMATA TBK. > > > > > > > > > > > > SPAM IS PROHIBITED > > > Yahoo! Groups Links > > > > > > > > > > > > > > > > > > > SPAM IS PROHIBITED > Yahoo! Groups Links > > > >

