Showing posts with label Excle. Show all posts
Showing posts with label Excle. Show all posts

Getting Started with Excel

belajar microsoft office

This chapter will teach you how to start a excel 2010 application in simple steps. Assuming you have Microsoft Office 2010 installed in your PC, to start excel application, follow the following steps at your PC:
Step (1): Click Start button.
Windows Start Button
Step (2): Click All Programs option from the menu.
Windows All Programs
Step (3): Search for Microsoft Office from the sub menu and click it.

Microsoft Office 2010

Step (4): Search for Microsoft Excel 2010 from the submenu and click it.
Microsoft Excel 2010
This will launch Microsoft Excel 2010 application and you will see the following excel window.
Excel Window

copy by : tutorialspoint.com

versi Indonesia

Memulai dengan Excel 2010

Bab ini akan mengajarkan Anda bagaimana untuk memulai excel 2010 aplikasi dalam langkah sederhana . Dengan asumsi Anda memiliki Microsoft Office 2010 terinstal di PC Anda , untuk memulai aplikasi excel , ikuti langkah-langkah berikut di PC Anda :

Langkah ( 1 ) : Klik tombol Start .

Windows Start Button

Langkah ( 2 ) : Klik All Programs pilihan dari menu .

Windows All Programs
Langkah ( 3 ) : Cari Microsoft Office dari sub menu dan klik .

Microsoft Office 2010

Langkah ( 4 ) : Cari Microsoft Excel 2010 dari submenu dan klik .

Microsoft Excel 2010

Ini akan meluncurkan Microsoft Excel 2010 aplikasi dan Anda akan melihat jendela excel berikut .
Excel Window

Di Ambil dari web : tutorialspoint.com

terimakasih untuk web. ini hanya sekedar mengingatkan saya untuk terus belajar, dan untuk yang mulai belajar

VBA Excel Macros

Excel VBA Macros

In this chapter let us understand how to write a simple macro. Let us take it step by step.
Step 1. First let us enable 'Developer' menu in Excel 20XX. To do the same, click on File >> Options.
Step 2. Click Customize Ribbon Tab and check 'Developer' and click 'OK'.
Developer in VBScript Step 3. The 'Developer' ribbon appears in menu bar.
Developer in VBScript Step 4. click 'Visual Basic' Button to open VBA Editor.
Developer in VBScript Step 5. Now Let us start scripting by adding a button. Click 'Insert' >> Select 'button'.
Developer in VBScript Step 6. Perform a Right Click and choose 'properties'.
Developer in VBScript Step 7. Edit the name and Caption as shown below.
Developer in VBScript Step 8. Now Double click the button, the sub procedure outline would be displayed as shown below.
Developer in VBScript Step 9. Let us start coding by simply adding a message.
Private Sub say_helloworld_Click()
    MsgBox "Hi"
End Sub
Step 10. Now you can click the button to execute the sub-procedure. The Output of the sub-procedure is shown below. We will demostrate further chapters using a simple button as explained from step#1 to 10. Hence It is important to understand this chapter thoroughly.



Developer in VBScript by http://www.tutorialspoint.com