Excel Basic Intermediate v1 2
Excel Basic Intermediate v1 2
(Basic + Intermediate)
By
Sum Lih Kang
Toolbars
Work Book
Worksheet
Cells
• Try 5+6=?
• Try 1+2x3=?
• Try 10/2=?
• Try (1+2)x3=?
• Try 2 to the power of 5 =?
• Try cube root of 8 =?
• Find (Ctrl + f)
• Replace (Ctrl + h)
1 2
• Left
• Right
• Mid
• Len
• Text-to-columns
• Pivot Table-count
Subroutine Function
-A small program -A User-Defined
formula
Header Notes
Macro Recorder
Notes: We can always disable/enable the above windows from the “View” menu
Notes: Codes should be stored in a module in order for many sheets to share the same macro
• Some computer will block the macro from running due to security reason
• In order to run the macro, we are encouraged to set the security level to medium
(prompt before enabling macro)
Maxis Private and Confidential Proprietary 42
Programming Codes-
Declare Function/Subroutine
Subroutine’s Name
Sub Display_Message()
Msgbox “Hello”
End Sub
End Function