Microsoft Excel. Pada saat membuka aplikasi microsoft excel, tampil pesan error berikut ini:
this workbook contains links to other data source.
- If you update the links, Excell will attempt to retrieve the latest data
- If you don’t update the links, Excel will use the previous information.
Note that data links can be used to access and share confidential information without your permission and possibly perform other harmful actions. Do not update the links if you do not trust the source of this workbook
Bagaimana kita menemukan cell dimana links tersebut berada? Caranya, kita klik menu Data, kemudian klik Edit Links
Setelah itu akan tampil informasi nama file dari link tersebut. Beberapa situs menyarankan dengan beberapa cara.
Pertama, adalah dengan menekan tombol CTRL+F, kemudian kita seleksi seluruh worksheet, kemudian ketik nama file yang disebutkan dari windows setelah kita tekan tombol Edit Links tadi. Jika ada link, kursor akan langsung menuju links file tadi.
Apakah bisa kita membuat dalam satu list file excel, dimana ditampilkan seluruh nama file links dalam satu sheet? Bisa. caranya dengan menggunakan macro. Code macro ini saya kutip dari forum – http://www.excelforum.com/excel-general/825383-find-the-links-for-the-message-this-workbook-contains-links-to-other-data-sources.html
Berikut kode macronya
[code language=”css”]
Sub ListLinks()
Dim i
Dim a
Links As Variant a
Links = ActiveWorkbook.LinkSources(xlExcelLinks)
If Not IsEmpty(aLinks) Then Sheets.Add
For i = 1 To UBound(aLinks)
Cells(i, 1).Value = aLinks(i)
Next i
End If
End Sub
[/code]
Semoga artikel microsoft excel dengan pesan error pada saat tampil pertama kali – ini, bermanfaat.
Incoming search terms:
- mengatasi this workbook contains links to other data sources