SlideShare a Scribd company logo
1 of 92
Download to read offline
Excel Code
Advanced Controls
Subroutines
EasySimple Controls (ID 27)
Private Sub CommandButton1_Click()
    MsgBox "Hello " & Application.UserName
End Sub
Private Sub OptionButton1_Click()
    'blue
    If OptionButton1 Then Selection.Interior.Color = RGB(30, 50, 120)
End Sub
Private Sub OptionButton2_Click()
    'green
    If OptionButton2 Then ActiveCell.EntireColumn.Interior.Color = RGB(30, 120, 50)
End Sub
Private Sub OptionButton3_Click()
    'red
    If OptionButton3 Then
    Cells.Interior.ColorIndex = xlNone
    Cells.Interior.Color = RGB(120, 50, 30)
    End If
    
End Sub
Private Sub ScrollBar1_Scroll()
    Call UpdateColor
End Sub
Private Sub ScrollBar2_Scroll()
    Call UpdateColor
End Sub
Private Sub ScrollBar3_Scroll()
    Call UpdateColor
End Sub
Sub UpdateColor()
    ActiveSheet.Shapes("Rectangle1").Fill.ForeColor.RGB = RGB(Range("ScrollBar1"), Range("ScrollBar2"), 
Range("ScrollBar3"))
End Sub
Page 1 of 92
Advanced Functions
Functions
EasyIs Workbook open? (ID 89)
Function IsWbOpen(wbName As String) As Boolean
'
' This function returns True if the given workbook <wbName> is open and False if it is not.
'
    Dim wBook As Workbook
    IsWbOpen = False
    
    For Each wBook In Workbooks
        If StrComp(wBook.Name, wbName) = 0 Then
            IsWbOpen = True
            Exit For
        End If
    Next
    
End Function
Page 2 of 92
EasyMultiple Substitute (ID 77)
Function BigSubstitute(CellToChange As Range, ParamArray NameNumber()) As String
Dim X As Long
    If (UBound(NameNumber) ‐ LBound(NameNumber) + 1) Mod 2 Then
    BigSubstitute = "#MISMATCH!"
    Exit Function
    
    Else
    BigSubstitute = CellToChange.Value
    For X = LBound(NameNumber) To UBound(NameNumber) Step 2
    BigSubstitute = Replace(BigSubstitute, NameNumber(X), _
    NameNumber(X + 1), , , vbTextCompare)
    Next
    End If
End Function
Function BigSubstitute2(CellToChange As Range, NameNumber As String) As String
Dim X As Long
Dim Data() As String
Data = Split(NameNumber, ",")
    If (UBound(Data) + 1) Mod 2 Then
    BigSubstitute2 = "#MISMATCH!"
    Exit Function
    Else
    BigSubstitute2 = CellToChange.Value
    For X = 0 To UBound(Data) Step 2
    BigSubstitute2 = Replace(BigSubstitute2, Data(X), _
    Data(X + 1), , , vbTextCompare)
    Next
    End If
End Function
Page 3 of 92
Application
Functions
EasyGet user (ID 18)
Function User()
' Returns the name of the current user
  User = Application.UserName
End Function
Subroutines
EasyLogon (ID 99)
Sub Logon()
Dim UserName As String
    UserName = InputBox("Enter Your Name:")
        If UserName <> Application.UserName Then GoTo WrongName
            MsgBox "Welcome" & Application.UserName
            'more code
        Exit Sub
WrongName:
MsgBox "You're logged in with a different name?!..."
End Sub
EasyShow and set default location (ID 35)
Sub showDefaultLocation()
ActiveCell = Application.DefaultFilePath
Application.DefaultFilePath = "D:DataCoursesExcel"
ActiveCell.Offset(1, 0).Select
ActiveCell = Application.DefaultFilePath
End Sub
Page 4 of 92
Arrays
Subroutines
EasySample Array (ID 10)
Sub assignArray()
      Dim Arr(5)
      Arr(1) = "Jan"
      Arr(2) = "Feb"
      Arr(3) = "Mar"
      Arr(4) = "Apr"
      Arr(5) = "May"
      MsgBox Arr(1) & "‐" & Arr(2) & "‐" & Arr(3) & "‐" & Arr(4) & "‐" & Arr(5)
End Sub
Page 5 of 92
Calculations
Functions
EasyCalculate Volume (ID 17)
Function Volume(width, height, depth)
Dim result
result = width * height * depth
Volume = result
End Function
Subroutines
EasyCalculate CDs with form (ID 42)
Private Sub btnEvaluate_Click()
    Dim Quantity As Integer
    Dim UnitPrice As Currency
    Dim TotalPrice As Currency
Quantity = CInt(txtQuantity.text)
' The price of one CD will depend on the number ordered
' The more the customer orders, the lower value each
If Quantity < 20 Then
UnitPrice = 20
ElseIf Quantity < 50 Then
UnitPrice = 15
ElseIf Quantity < 100 Then
UnitPrice = 12
ElseIf Quantity < 500 Then
UnitPrice = 8
Else
UnitPrice = 5
End If
TotalPrice = Quantity * UnitPrice
txtUnitPrice.text = CStr(UnitPrice)
txtTotalPrice.text = CStr(TotalPrice)
End Sub
Page 6 of 92
EasyCalculate mod (ID 39)
Sub CalcMod()
Dim length As Integer
Dim width  As Integer
Dim result
Dim remainder
length = 22
width = 5
result = length  width
remainder = length Mod width
Debug.Print result: Debug.Print remainder
End Sub
EasyGet something with vlookup (ID 98)
Sub GetPrice()
    Dim PartNum As Variant
    Dim Price As Double
    PartNum = InputBox("Enter the Part Number")
    Sheets("Prices").Activate
    Price = WorksheetFunction.VLookup(PartNum, Range("PriceList"), 2, False)
    MsgBox PartNum & " costs " & Price
End Sub
EasyPMT calculation (ID 97)
Sub PmtCalc()
    Dim IntRate As Double
    Dim LoanAmt As Double
    Dim Periods As Integer
    IntRate = 0.0825 / 12
    Periods = 30 * 12
    LoanAmt = 150000
    MsgBox WorksheetFunction.Pmt(IntRate, Periods, LoanAmt)
End Sub
Page 7 of 92
Conditions ‐ Scenarios
Subroutines
EasyCheck and Test input and cell (ID 107)
Sub testInput()
Dim strDate As String
strDate = InputBox("Give a date", "Date")
If strDate <> "" Then
' if we fill in something
    If IsDate(strDate) Then
        'if it's a date
        MsgBox "You entered a date: " & Day(strDate) & "/" & Month(strDate) & "/" & Year(strDate)
    Else
        ' if it's something else
        If IsNumeric(strDate) Then
            MsgBox "You filled in a number", vbExclamation, "Error"
        Else
            MsgBox "Wrong Input: this is no date or number", vbExclamation, "Error"
        End If
    End If
End If
End Sub
Sub CheckCell()
    Dim Msg As String
    Select Case IsEmpty(ActiveCell)
        Case True
            Msg = "is blank."
        Case Else
            Select Case ActiveCell.HasFormula
                Case True
                    Msg = "has a formula"
                Case False
                    Select Case IsNumeric(ActiveCell)
                        Case True
                            Msg = "has a number"
                        Case Else
                            Msg = "has text"
                    End Select
            End Select
    End Select
    MsgBox "Cell " & ActiveCell.Address & " " & Msg
    ActiveWorkbook.Worksheets("loan").Range("C15") = ActiveCell.Address
    
End Sub
Page 8 of 92
EasyControl Num Sign (ID 86)
Function NumSign(InVal)
    Select Case InVal
        Case Is < 0
            NumSign = "Negative"
        Case 0
            NumSign = "Zero"
        Case Is > 0
            NumSign = "Positive"
    End Select
End Function
EasyDifferent scenarios (ID 52)
Sub Scaling()
Dim Age As Integer
Age = 24
    Select Case Age
        Case 0 To 17
        MsgBox ("Teen")
        Case 18 To 55
        MsgBox ("Adult")
        Case Else
        MsgBox ("Senior")
    End Select
End Sub
Sub Isit()
    Dim Number As Integer
    Number = ‐448
    
    Select Case Number
        Case Is < 0
        MsgBox ("The number is negative")
        Case Is > 0
        MsgBox ("The number is positive")
        Case Else
        MsgBox ("0")
    End Select
End Sub
Page 9 of 92
EasyDifferent scenarios (ID 59)
Option Explicit
Public Sub TestBeslissing()
'Variabelen
Dim intScore As Integer 'Variabele die de score bevat
Dim strTekst As String  'De tekst voor de msgbox
'Vraag aan de gebruiker een getal en stop de waarde in intScore
intScore = InputBox("Geef een getal.", "Getal?", 7)
'Check de inhoud van de variable intscore
Select Case intScore
    Case Is > 15                        'groter dan 15
        strTekst = "groter dan 15."
    Case Is > 10                        'groter dan 10
        strTekst = "groter dan 10."
    Case Is > 5                         'groter dan 5
        strTekst = "groter dan 5."
    Case Else                           'in alle andere gevallen
        strTekst = "kleiner dan of gelijk aan 5."
End Select
'Feedback
MsgBox "Het getal is " & strTekst, vbOKOnly + vbInformation, "Feedback"
'Check de inhoud van intscore
If intScore > 15 Then           'groter dan 15
    strTekst = "groter dan 15."
ElseIf intScore > 10 Then       'groter dan 10
    strTekst = "groter dan 10."
ElseIf intScore > 5 Then        'groter dan 5
    strTekst = "groter dan 5."
Else                            'alle andere gevallen
    strTekst = "kleiner dan of gelijk aan 5."
End If
'Feedback
MsgBox "Het getal is " & strTekst, vbOKOnly + vbInformation, "Feedback"
End Sub
Sub testInput()
Dim strDate As String
strDate = InputBox("Give a date", "Date")
If strDate <> "" Then
' if we fill in something
    If IsDate(strDate) Then
        'if it's a date
        MsgBox "You entered a date: " & Day(strDate) & "/" & Month(strDate) & "/" & Year(strDate)
    Else
        ' if it's something else
        If IsNumeric(strDate) Then
            MsgBox "You filled in a number", vbExclamation, "Error"
        Else
            MsgBox "Wrong Input: this is no date or number", vbExclamation, "Error"
        End If
    End If
End If
End Sub
Page 10 of 92
EasyDiscount (ID 106)
Sub ShowDiscount()
    Dim Quantity As Integer
    Dim Discount As Double
    Quantity = InputBox("Enter Quantity:")
    If Quantity > 0 Then Discount = 0.1
    If Quantity >= 25 Then Discount = 0.15
    If Quantity >= 50 Then Discount = 0.2
    If Quantity >= 75 Then Discount = 0.25
    MsgBox "Discount: " & Discount
End Sub
Sub ShowDiscount2()
    Dim Quantity As Integer
    Dim Discount As Double
    Quantity = InputBox("Enter Quantity: ")
    If Quantity > 0 And Quantity < 25 Then
    Discount = 0.1
        ElseIf Quantity >= 25 And Quantity < 50 Then
        Discount = 0.15
        ElseIf Quantity >= 50 And Quantity < 75 Then
        Discount = 0.2
        ElseIf Quantity >= 75 Then
        Discount = 0.25
    End If
    MsgBox "Discount: " & Discount
End Sub
EasyEvaluate Age (ID 11)
Sub goVoting()
Dim Age As Integer
Dim Answer As Variant
Answer = InputBox("what's your age please?", "Voting Topic")
Age = CInt(Answer)
 If Age >= 18 And Age < 22 Then
        MsgBox "You can vote"
    ElseIf Age >= 22 And Age < 62 Then
        MsgBox "You can drink and vote"
    ElseIf Age >= 62 Then
        MsgBox "You are eligible to apply for Social Security Benefit"
    Else
        MsgBox "You cannot drink or vote"
    End If
End Sub
Page 11 of 92
EasyGet prime numbers (ID 26)
Option Explicit
Sub NombrePrimaire()
'Dim selectieZone As Range
Dim cell As Range
'selectieZone = Range("A1:J23")
'selectie.Select
'selectie.Interior.Color = vbYellow
Range("A1:J23").ClearFormats
For Each cell In Range("A1:J23")
    If cell Mod 2 = 0 Then
        cell.Interior.Color = vbRed
    End If
    If cell Mod 3 = 0 Then
        cell.Interior.Color = vbYellow
    End If
    If cell Mod 5 = 0 Then
        cell.Interior.Color = vbGreen
    End If
    If cell Mod 7 = 0 Then
        cell.Interior.Color = vbMagenta
    End If
    If cell Mod 11 = 0 Then
        cell.Interior.Color = vbBlue
    End If
        If cell Mod 13 = 0 Then
        cell.Interior.Color = vbBlack
    End If
    
Next
End Sub
Sub NombrePrimaire2()
Dim i As Integer
i = 0
Dim cell As Range
'Range("A1:J23").ClearFormats
Range("A1:J23").Clear
For Each cell In Range("A1:J23")
    cell.Value = i + 1
    i = i + 1
Next
For Each cell In Range("A1:J23")
    If cell Mod 2 = 0 Then
        cell.Interior.Color = vbRed
    ElseIf cell Mod 3 = 0 Then
        cell.Interior.Color = vbYellow
    ElseIf cell Mod 5 = 0 Then
Page 12 of 92
        cell.Interior.Color = vbGreen
    ElseIf cell Mod 7 = 0 Then
        cell.Interior.Color = vbMagenta
    ElseIf cell Mod 11 = 0 Then
        cell.Interior.Color = vbBlue
    ElseIf cell Mod 13 = 0 Then
        cell.Interior.Color = vbBlack
    End If
    
Next
End Sub
EasyGet your grade (ID 12)
Sub getGrade()
Dim LetterGrade As String
Dim Grade As Integer
Dim Answer As Variant
Answer = InputBox("what's your grade", "Grade ?")
Grade = CInt(Answer)
   Select Case Grade
        Case Is >= 90
            LetterGrade = "A"
        Case Is >= 80
            LetterGrade = "B"
        Case Is >= 70
            LetterGrade = "C"
        Case Is >= 60
            LetterGrade = "D"
        Case Else
            LetterGrade = "Sorry"
    End Select
MsgBox LetterGrade
End Sub
Page 13 of 92
EasyGo voting (ID 108)
Sub goVoting()
Dim Age As Integer
Dim Answer As Variant
Answer = InputBox("what's your age please?", "Voting Topic")
Age = CInt(Answer)
 If Age >= 18 And Age < 22 Then
        MsgBox "You can vote"
    ElseIf Age >= 22 And Age < 62 Then
        MsgBox "You can drink and vote"
    ElseIf Age >= 62 Then
        MsgBox "You are eligible to apply for Social Security Benefit"
    Else
        MsgBox "You cannot drink or vote"
    End If
End Sub
EasyGreeting (ID 100)
Sub Auto_Open()
    MsgBox "Hi !" & vbCr & "Welcome" & vbCr & Date, vbInformation
End Sub
Sub GreetMe4()
    Dim Msg As String
    If Time < 0.5 Then
        Msg = "Morning"
    Else
        If Time >= 0.5 And Time < 0.75 Then
            Msg = "Afternoon"
        Else
            Msg = "Evening"
        End If
    End If
    MsgBox "Good " & Msg
End Sub
'for speed purpose: exit when true:
Sub GreetMe5()
    Dim Msg As String
    If Time < 0.5 Then
        Msg = "Morning"
    ElseIf Time >= 0.5 And Time < 0.75 Then
        Msg = "Afternoon"
    Else
        Msg = "Evening"
    End If
MsgBox "Good " & Msg
End Sub
Page 14 of 92
EasyLogon (ID 99)
Sub Logon()
Dim UserName As String
    UserName = InputBox("Enter Your Name:")
        If UserName <> Application.UserName Then GoTo WrongName
            MsgBox "Welcome" & Application.UserName
            'more code
        Exit Sub
WrongName:
MsgBox "You're logged in with a different name?!..."
End Sub
EasyType a Number (ID 74)
Sub aCase()
Dim Number As Integer
Number = InputBox("type a number")
Number = CInt(Number)
Select Case Number
  Case 1
      MsgBox ("Less than 2")
  Case 2 To 5
      MsgBox ("Between 2 and 5")
  Case 6, 7, 8
      MsgBox ("Between 6 and 8")
  Case 9 To 10
      MsgBox ("Greater than 8")
  Case Else
      MsgBox ("Not between 1 and 10")
End Select
Range("A1") = Number
MsgBox ("your input : " & Number & " has been written in cell A1")
End Sub
Page 15 of 92
EasyWeek day name (ID 75)
Sub aCondition()
Dim thisDay As String
thisDay = WeekdayName(Weekday(Date) ‐ 1)
If thisDay = "samedi" Or thisDay = "dimanche" Then
  MsgBox ("Happy Weekend!")
  Else
  MsgBox ("Happy not‐Weekend!")
End If
End Sub
Page 16 of 92
Debugging
Subroutines
EasyCalculate mod (ID 39)
Sub CalcMod()
Dim length As Integer
Dim width  As Integer
Dim result
Dim remainder
length = 22
width = 5
result = length  width
remainder = length Mod width
Debug.Print result: Debug.Print remainder
End Sub
Page 17 of 92
Error Handling
Subroutines
Page 18 of 92
EasyDifferent scenarios (ID 59)
Option Explicit
Public Sub TestBeslissing()
'Variabelen
Dim intScore As Integer 'Variabele die de score bevat
Dim strTekst As String  'De tekst voor de msgbox
'Vraag aan de gebruiker een getal en stop de waarde in intScore
intScore = InputBox("Geef een getal.", "Getal?", 7)
'Check de inhoud van de variable intscore
Select Case intScore
    Case Is > 15                        'groter dan 15
        strTekst = "groter dan 15."
    Case Is > 10                        'groter dan 10
        strTekst = "groter dan 10."
    Case Is > 5                         'groter dan 5
        strTekst = "groter dan 5."
    Case Else                           'in alle andere gevallen
        strTekst = "kleiner dan of gelijk aan 5."
End Select
'Feedback
MsgBox "Het getal is " & strTekst, vbOKOnly + vbInformation, "Feedback"
'Check de inhoud van intscore
If intScore > 15 Then           'groter dan 15
    strTekst = "groter dan 15."
ElseIf intScore > 10 Then       'groter dan 10
    strTekst = "groter dan 10."
ElseIf intScore > 5 Then        'groter dan 5
    strTekst = "groter dan 5."
Else                            'alle andere gevallen
    strTekst = "kleiner dan of gelijk aan 5."
End If
'Feedback
MsgBox "Het getal is " & strTekst, vbOKOnly + vbInformation, "Feedback"
End Sub
Sub testInput()
Dim strDate As String
strDate = InputBox("Give a date", "Date")
If strDate <> "" Then
' if we fill in something
    If IsDate(strDate) Then
        'if it's a date
        MsgBox "You entered a date: " & Day(strDate) & "/" & Month(strDate) & "/" & Year(strDate)
    Else
        ' if it's something else
        If IsNumeric(strDate) Then
            MsgBox "You filled in a number", vbExclamation, "Error"
        Else
            MsgBox "Wrong Input: this is no date or number", vbExclamation, "Error"
        End If
    End If
End If
End Sub
Page 19 of 92
Events
Subroutines
EasyGreeting (ID 100)
Sub Auto_Open()
    MsgBox "Hi !" & vbCr & "Welcome" & vbCr & Date, vbInformation
End Sub
Sub GreetMe4()
    Dim Msg As String
    If Time < 0.5 Then
        Msg = "Morning"
    Else
        If Time >= 0.5 And Time < 0.75 Then
            Msg = "Afternoon"
        Else
            Msg = "Evening"
        End If
    End If
    MsgBox "Good " & Msg
End Sub
'for speed purpose: exit when true:
Sub GreetMe5()
    Dim Msg As String
    If Time < 0.5 Then
        Msg = "Morning"
    ElseIf Time >= 0.5 And Time < 0.75 Then
        Msg = "Afternoon"
    Else
        Msg = "Evening"
    End If
MsgBox "Good " & Msg
End Sub
EasyHighlight selected column and row (ID 28)
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
    Cells.Interior.ColorIndex = xlNone
    With ActiveCell
        .EntireRow.Interior.ColorIndex = 36
        .EntireColumn.Interior.ColorIndex = 36
    End With
End Sub
Page 20 of 92
EasyLocked area (ID 82)
Private Sub Worksheet_Activate()
Me.ScrollArea = "A1:Z100"
End Sub
Page 21 of 92
File management
Subroutines
EasyAdd a new workbook (ID 73)
Sub AddNew()
Dim NewBook As Object
Set NewBook = Workbooks.Add
    With NewBook
        .Title = "All Sales"
        .Subject = "Sales"
        .SaveAs Filename:="Allsales.xls"
    End With
End Sub
EasyShow and set default location (ID 35)
Sub showDefaultLocation()
ActiveCell = Application.DefaultFilePath
Application.DefaultFilePath = "D:DataCoursesExcel"
ActiveCell.Offset(1, 0).Select
ActiveCell = Application.DefaultFilePath
End Sub
Page 22 of 92
Forms
Subroutines
EasyCalculate CDs with form (ID 42)
Private Sub btnEvaluate_Click()
    Dim Quantity As Integer
    Dim UnitPrice As Currency
    Dim TotalPrice As Currency
Quantity = CInt(txtQuantity.text)
' The price of one CD will depend on the number ordered
' The more the customer orders, the lower value each
If Quantity < 20 Then
UnitPrice = 20
ElseIf Quantity < 50 Then
UnitPrice = 15
ElseIf Quantity < 100 Then
UnitPrice = 12
ElseIf Quantity < 500 Then
UnitPrice = 8
Else
UnitPrice = 5
End If
TotalPrice = Quantity * UnitPrice
txtUnitPrice.text = CStr(UnitPrice)
txtTotalPrice.text = CStr(TotalPrice)
End Sub
Page 23 of 92
Full Functionality
Functions
EasyMultiple Substitute (ID 77)
Function BigSubstitute(CellToChange As Range, ParamArray NameNumber()) As String
Dim X As Long
    If (UBound(NameNumber) ‐ LBound(NameNumber) + 1) Mod 2 Then
    BigSubstitute = "#MISMATCH!"
    Exit Function
    
    Else
    BigSubstitute = CellToChange.Value
    For X = LBound(NameNumber) To UBound(NameNumber) Step 2
    BigSubstitute = Replace(BigSubstitute, NameNumber(X), _
    NameNumber(X + 1), , , vbTextCompare)
    Next
    End If
End Function
Function BigSubstitute2(CellToChange As Range, NameNumber As String) As String
Dim X As Long
Dim Data() As String
Data = Split(NameNumber, ",")
    If (UBound(Data) + 1) Mod 2 Then
    BigSubstitute2 = "#MISMATCH!"
    Exit Function
    Else
    BigSubstitute2 = CellToChange.Value
    For X = 0 To UBound(Data) Step 2
    BigSubstitute2 = Replace(BigSubstitute2, Data(X), _
    Data(X + 1), , , vbTextCompare)
    Next
    End If
End Function
Subroutines
Page 24 of 92
EasyRemove all Hyperlinks in sheet (ID 16)
Sub RemoveHyperlinks()
    'Remove all hyperlinks from the active sheet
    ActiveSheet.Hyperlinks.Delete
End Sub
Page 25 of 92
Interactivity
Subroutines
EasyEnd of line (ID 49)
Sub messageBox()
    ActiveCell = MsgBox("Your logon credentials have been checked " & _
    "and your application has been approved: Congratulations!" & _
    vbCrLf & "Before leaving, would you like " & _
    "to take our survey survey now?", _
    vbYesNo Or vbQuestion, _
    "Crofton Circle of Friends ‐ Membership Application")
End Sub
EasyEnter a date of choice (ID 50)
Sub enterADate()
    Dim DateOfChoice As Date
    DateOfChoice = InputBox("Please enter your date of choice as mm/dd/yyyy", _
    "Date of Choice", Date)
    MsgBox ("Date of Choice: " & DateOfChoice)
    ActiveCell = CDate(DateOfChoice)
End Sub
Page 26 of 92
EasyGenerate a worksheet (ID 46)
Sub CreateWorksheet()
Dim Answer As Variant
' This macro is used to create a workbook for the
' Georgetown Dry Cleaning Services
' Keyboard Shortcut: Ctrl+Shift+W
Rem check whether there's something already on the sheet
If WorksheetFunction.CountA(Cells) > 0 Then
    Answer = MsgBox("There's content in this sheet " & ActiveSheet.Name & ", continue?", vbYesNo, "Warning")
End If
        
If Answer = vbYes Or Answer = "" Then
    
    Rem Just in case there is anything on the
    Rem worksheet, delete everything
    Range("A:K").Delete
    Range("1:20").Delete
    
    Rem Create the sections and headings of the worksheet
    Range("B2") = "Georgetown Dry Cleaning Services"
    Range("B2").Font.Name = "Rockwell Condensed"
    Range("B2").Font.Size = 24
    Range("B2").Font.Bold = True
    Range("B2").Font.Color = RGB(200, 100, 50)
    Range("B3:J3").Interior.ThemeColor = xlThemeColorAccent3
    Range("B5") = "Order Identification"
    Range("B5").Font.Name = "Cambria"
    Range("B5").Font.Size = 14
    Range("B5").Font.Bold = True
    Range("B5").Font.ThemeColor = 8
    
    Rem To draw a thick line, change the bottom
    Rem borders of the cells from B5 to J5
    Range("B5:J5").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B5:J5").Borders(xlEdgeBottom).Weight = xlMedium
    Range("B5:J5").Borders(xlEdgeBottom).ThemeColor = 8
    Range("B6") = "Receipt #:"
    Range("D6:F6").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D6:F6").Borders(xlEdgeBottom).Weight = xlHairline
    Range("G6") = "Order Status:"
    Range("I6:J6").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("I6:J6").Borders(xlEdgeBottom).Weight = xlHairline
    Range("B7") = "Customer Name:"
    Range("D7:F7").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D7:F7").Borders(xlEdgeBottom).Weight = xlHairline
    Range("G7") = "Customer Phone:"
    Range("I7:J7").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("I7:J7").Borders(xlEdgeBottom).Weight = xlHairline
    
    Rem To draw a thick line, change the bottom
    Rem borders of the cells from B5 to J5
    Range("B8:J8").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B8:J8").Borders(xlEdgeBottom).Weight = xlThin
    Range("B9") = "Date Left:"
    Range("D9:F9").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D9:F9").Borders(xlEdgeBottom).Weight = xlHairline
    Range("G9") = "Time Left:"
    Range("I9:J9").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("I9:J9").Borders(xlEdgeBottom).Weight = xlHairline
Page 27 of 92
    Range("B10") = "Date Expected:"
    Range("D10:F10").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D10:F10").Borders(xlEdgeBottom).Weight = xlHairline
    Range("G10") = "Time Expected:"
    Range("I10:J10").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("I10:J10").Borders(xlEdgeBottom).Weight = xlHairline
    Range("B11") = "Date Picked Up:"
    Range("D11:F11").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D11:F11").Borders(xlEdgeBottom).Weight = xlHairline
    Range("G11") = "Time Picked Up:"
    Range("I11:J11").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("I11:J11").Borders(xlEdgeBottom).Weight = xlHairline
    
    Rem To draw a thick line, change the bottom
    Rem borders of the cells from B5 to J5
    Range("B12:J12").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B12:J12").Borders(xlEdgeBottom).Weight = xlMedium
    Range("B12:J12").Borders(xlEdgeBottom).ThemeColor = 8
    Range("B13") = "Items to Clean"
    Range("B13").Font.Name = "Cambria"
    Range("B13").Font.Size = 14
    Range("B13").Font.Bold = True
    Range("B13").Font.ThemeColor = 8
    Range("B14") = "Item"
    Range("D14") = "Unit Price"
    Range("E14") = "Qty"
    Range("F14") = "Sub‐Total"
    Range("B14:F14").Borders(xlEdgeLeft).LineStyle = xlContinuous
    Range("B14:F14").Borders(xlEdgeLeft).Weight = xlThin
    Range("B14:F14").Borders(xlEdgeTop).LineStyle = xlContinuous
    Range("B14:F14").Borders(xlEdgeTop).Weight = xlThin
    Range("B14:F14").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("B14:F14").Borders(xlEdgeRight).Weight = xlThin
    Range("B14:F14").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B14:F14").Borders(xlEdgeBottom).Weight = xlThin
    Range("C14").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("C14").Borders(xlEdgeRight).Weight = xlThin
    Range("D14").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("D14").Borders(xlEdgeRight).Weight = xlThin
    Range("E14").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("E14").Borders(xlEdgeRight).Weight = xlThin
    Range("B15") = "Shirts"
    Range("B15").Borders(xlEdgeLeft).LineStyle = xlContinuous
    Range("B15").Borders(xlEdgeLeft).Weight = xlThin
    Range("H15") = "Order Summary"
    Range("H15").Font.Name = "Cambria"
    Range("H15").Font.Size = 14
    Range("H15").Font.Bold = True
    Range("H15").Font.ThemeColor = 8
    Range("B16") = "Pants"
    Range("B16").Borders(xlEdgeLeft).LineStyle = xlContinuous
    Range("B16").Borders(xlEdgeLeft).Weight = xlThin
    Range("B17") = "None"
    Range("B17").Borders(xlEdgeLeft).LineStyle = xlContinuous
    Range("B17").Borders(xlEdgeLeft).Weight = xlThin
    Range("H17") = "Cleaning Total:"
    Range("I17").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("I17").Borders(xlEdgeBottom).Weight = xlHairline
    Range("B18") = "None"
    Range("B18").Borders(xlEdgeLeft).LineStyle = xlContinuous
    Range("B18").Borders(xlEdgeLeft).Weight = xlThin
    Range("H18") = "Tax Rate:"
    Range("I18").Borders(xlEdgeBottom).LineStyle = xlContinuous
Page 28 of 92
    Range("I18").Borders(xlEdgeBottom).Weight = xlHairline
    Range("I18") = "5.75"
    Range("J18") = "%"
    Range("B19") = "None"
    Range("B19").Borders(xlEdgeLeft).LineStyle = xlContinuous
    Range("B19").Borders(xlEdgeLeft).Weight = xlThin
    Range("H19") = "Tax Amount:"
    Range("I19").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("I19").Borders(xlEdgeBottom).Weight = xlHairline
    Range("B20") = "None"
    Range("B20").Borders(xlEdgeLeft).LineStyle = xlContinuous
    Range("B20").Borders(xlEdgeLeft).Weight = xlThin
    Range("C15").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("C15").Borders(xlEdgeRight).Weight = xlThin
    Range("C16").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("C16").Borders(xlEdgeRight).Weight = xlThin
    Range("C17").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("C17").Borders(xlEdgeRight).Weight = xlThin
    Range("C18").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("C18").Borders(xlEdgeRight).Weight = xlThin
    Range("C19").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("C19").Borders(xlEdgeRight).Weight = xlThin
    Range("C20").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("C20").Borders(xlEdgeRight).Weight = xlThin
    Range("B14:C14").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B14:C14").Borders(xlEdgeBottom).Weight = xlThin
    Range("B15:C15").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B15:C15").Borders(xlEdgeBottom).Weight = xlThin
    Range("D15:F15").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D15:F15").Borders(xlEdgeBottom).Weight = xlHairline
    Range("D15").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("D15").Borders(xlEdgeRight).Weight = xlHairline
    Range("E15").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("E15").Borders(xlEdgeRight).Weight = xlHairline
    Range("F15").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("F15").Borders(xlEdgeRight).Weight = xlThin
    Range("B16:C16").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B16:C16").Borders(xlEdgeBottom).Weight = xlThin
    Range("D16:F16").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D16:F16").Borders(xlEdgeBottom).Weight = xlHairline
    Range("D16").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("D16").Borders(xlEdgeRight).Weight = xlHairline
    Range("E16").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("E16").Borders(xlEdgeRight).Weight = xlHairline
    Range("F16").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("F16").Borders(xlEdgeRight).Weight = xlThin
    Range("B17:C17").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B17:C17").Borders(xlEdgeBottom).Weight = xlThin
    Range("D17:F17").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D17:F17").Borders(xlEdgeBottom).Weight = xlHairline
    Range("D17").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("D17").Borders(xlEdgeRight).Weight = xlHairline
    Range("E17").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("E17").Borders(xlEdgeRight).Weight = xlHairline
    Range("F17").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("F17").Borders(xlEdgeRight).Weight = xlThin
    Range("B18:C18").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B18:C18").Borders(xlEdgeBottom).Weight = xlThin
    Range("D18:F18").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D18:F18").Borders(xlEdgeBottom).Weight = xlHairline
    Range("D18").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("D18").Borders(xlEdgeRight).Weight = xlHairline
    Range("E18").Borders(xlEdgeRight).LineStyle = xlContinuous
Page 29 of 92
    Range("E18").Borders(xlEdgeRight).Weight = xlHairline
    Range("F18").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("F18").Borders(xlEdgeRight).Weight = xlThin
    Range("B19:C19").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B19:C19").Borders(xlEdgeBottom).Weight = xlThin
    Range("D19:F19").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D19:F19").Borders(xlEdgeBottom).Weight = xlHairline
    Range("D19").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("D19").Borders(xlEdgeRight).Weight = xlHairline
    Range("E19").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("E19").Borders(xlEdgeRight).Weight = xlHairline
    Range("F19").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("F19").Borders(xlEdgeRight).Weight = xlThin
    Range("B20:F20").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B20:F20").Borders(xlEdgeBottom).Weight = xlThin
    Range("D20").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("D20").Borders(xlEdgeRight).Weight = xlHairline
    Range("E20").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("E20").Borders(xlEdgeRight).Weight = xlHairline
    Range("F20").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("F20").Borders(xlEdgeRight).Weight = xlThin
    Range("H20") = "Order Total:"
    Range("I20").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("I20").Borders(xlEdgeBottom).Weight = xlHairline
    
    Rem Change the widths and heights of some columns and rows
    Rem In previous lessons, we learned all these things
    Range("E:E, G:G").ColumnWidth = 4
    Columns("H").ColumnWidth = 14
    Columns("J").ColumnWidth = 1.75
    Rows("3").RowHeight = 2
    Range("8:8, 12:12").RowHeight = 8
    
    Rem Merge the cells H15, I15, H16, and I16
    Range("H15:I16").MergeCells = True
    
    Rem Align the merged text to the left
    Range("H15:H16").VerticalAlignment = xlBottom
    Range("H16").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("H16:I16").Borders(xlEdgeBottom).Weight = xlMedium
    Range("H16:I16").Borders(xlEdgeBottom).ThemeColor = 8
    
    Rem Hide the gridlines
    ActiveWindow.DisplayGridlines = False
    
    If bWorksheetExists("GTDS") Then
    MsgBox ("workbook exists")
    Else
    ActiveSheet.Name = "GTDS"
    Worksheets.Add after:=Worksheets("GTDS")
    Worksheets("GTDS").Select
    ActiveSheet.Next.Select
    End If
End If
End Sub
Page 30 of 92
EasyIs this your name? (ID 23)
Sub GuessName()
Dim msg As String
Dim ans As String
msg = "Is your name " & Application.UserName & "?"
ans = MsgBox(msg, vbYesNo)
If ans = vbNo Then MsgBox "Oh, never mind."
If ans = vbYes Then MsgBox "I must be clairvoyant!"
End Sub
EasyLoan Dates (ID 55)
Public Sub LoanDate()
Dim LoanStartDate As Date
Dim DepositTime As Date
    'LoanStartDate = #6/10/1998#
    LoanStartDate = Date
    'DepositTime = TimeValue("7:14:00")
    DepositTime = Format(Now, "hh:mm:ss")
    MsgBox ("Loan Length: " & DateAdd("yyyy", 5, LoanStartDate))
    MsgBox ("Time Ready: " & DateAdd("h", 8, DepositTime))
End Sub
Public Sub LoanDate2()
Dim LoanStartDate As Date
Dim LoanEndDate As Date
Dim Months As Long
LoanStartDate = Date
LoanEndDate = #12/31/2020#
Months = DateDiff("m", LoanStartDate, LoanEndDate)
MsgBox ("Loan Start Date: " & vbTab & LoanStartDate & vbCrLf & _
"Loan End Date: " & vbTab & LoanEndDate & vbCrLf & _
"Loan Length: " & vbTab & Months & " months")
End Sub
Page 31 of 92
EasySimple message boxes and input boxes (ID 57)
'‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐
'Simple MessageBoxes
'‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐
Sub MessageBox1()
' A simple message box
    MsgBox "Macro complete!"
End Sub
Sub MessageBox_Info2()
' A message box with a custom title and icon
    MsgBox "Macro complete!", vbInformation, "Information"
End Sub
Sub MessageBox_Excl2()
' A message box with a custom title and icon
    MsgBox "Macro complete!", vbExclamation, "Exclamation"
End Sub
Sub MessageBox_Quest2()
' A message box with a custom title and icon
    MsgBox "Macro complete!", vbQuestion, "Question"
End Sub
Sub MessageBox_Crit2()
' A message box with a custom title and icon
    MsgBox "Boom !", vbCritical, "Critical"
End Sub
Sub MessageBox3()
' A message box with a multi‐line message
    Dim strMessage As String
    strMessage = "This is the First Line" & vbCrLf & "Here's some more!"
    MsgBox strMessage
End Sub
Sub MessageBox4()
' This method compiles the message a line at a time for clarity
    Dim strMessage As String
    strMessage = "This is the First Line"
    strMessage = strMessage & vbCrLf & vbCrLf
    strMessage = strMessage & "Here's some more!"
    MsgBox strMessage, , "Multiple Lines"
End Sub
Sub MessageBox5()
' A message box with Yes/No buttons
    Dim strAnswer As VbMsgBoxResult
    strAnswer = MsgBox("Would you like to colour the cell?", vbQuestion + vbYesNo, "Decision time!")
    If strAnswer = vbYes Then
        Selection.Interior.ColorIndex = 3
    End If
End Sub
'‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐
'Simple InputBoxes
'‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐
Page 32 of 92
Sub InputBox1()
' An input box used to place a value into a variable
    Dim strMessage As String
    strMessage = InputBox("Please enter your name:")
    strMessage = "Hello " & strMessage
    MsgBox strMessage
End Sub
Sub InputBox2()
' An input box whose value is used immediately
    MsgBox "Hello " & InputBox("Please enter your name:")
End Sub
Sub InputBox3()
' This macro's actions depend on the user's response.
    Dim strResponse As String
    strResponse = InputBox("Please type something...", "It's up to you...")
    If strResponse = "" Then
        MsgBox "You have chosen not to participate!"
        Exit Sub
    End If
    Range("A1").Value = strResponse
End Sub
EasyVolume calculation (ID 7)
Sub Volume()
Dim width As Variant
Dim height As Variant
Dim depth As Variant
Dim result As Variant
Dim action As Integer
width = InputBox("Please provide width")
height = InputBox("Please provide height")
depth = InputBox("Please provide length")
result = width * height * depth
action = MsgBox("the result is:" & result & " m3" & vbNewLine & " ‐ Do you want result inserted into the cell?", 
vbYesNoCancel)
If action = vbYes Then
ActiveCell.FormulaR1C1 = result
ElseIf action = vbCancel Then
Range("A1").Select
End If
End Sub
Page 33 of 92
EasyYes or No? (ID 72)
Sub YesNoMessageBox()
Dim Answer As String
Dim MyNote As String
    'Place your text here
    MyNote = "Do you agree?"
    'Display MessageBox
    Answer = MsgBox(MyNote, vbQuestion + vbYesNo, "???")
    If Answer = vbNo Then
        'Code for No button Press
        MsgBox "You pressed NO!"
    Else
        'Code for Yes button Press
        MsgBox "You pressed Yes!"
    End If
End Sub
Page 34 of 92
Loops
Subroutines
EasyChange Sign (ID 103)
Sub ChangeSign()
    Dim Cell As Range
        For Each Cell In Range("A1:E50")
            If IsNumeric(Cell.Value) Then
            Cell.Value = Cell.Value * ‐1
        End If
Next Cell
End Sub
EasyCount workbooks (ID 79)
Sub CountBooks()
    Dim overview As String
    Dim wkbk As Workbook
    
    overview = ""
    For Each wkbk In Workbooks
        overview = overview & wkbk.Name & vbNewLine
    Next
    
    'MsgBox Workbooks.Parent
    MsgBox "nr of workbooks:" & Workbooks.Count & vbCr _
    & overview
    
End Sub
Page 35 of 92
EasyDifferent ways to loop (ID 58)
Public Sub Lussen()
'Variabelen
Dim intMinimum As Integer   'Het minimum
Dim intMaximum As Integer   'Het maximum
Dim intDeler As Integer     'de deler
Dim i As Integer            'variabele voor de lussen
'Initialiseren van variabelen
intMinimum = Range("B1")
intDeler = Range("B2")
intMaximum = Range("B3")
'Is het minimum kleiner dan het maximum? Zo nee => exit
If intMinimum > intMaximum Then
    MsgBox "Minimum moet kleiner zijn dan maximum !", vbExclamation, "Verkeerde input"
    Exit Sub
End If
''''''''''''''''''''''''''VIA FOR NEXT '''''''''''''''''''''''
'Start op het minimum en ga door tot het maximum
For i = intMinimum To intMaximum
    'is de rest bij deling door de deler = 0 => gevonden => exit lus
    If i Mod intDeler = 0 Then Exit For
Next i
'Wegschrijven resultaat
Range("B4") = i
''''''''''''''''''''''''''VIA DO LOOP WHILE '''''''''''''''''''''''
i = intMinimum
Do
    If i Mod intDeler = 0 Then Exit Do
    i = i + 1
Loop While i <= intMaximum
Range("C4") = i
''''''''''''''''''''''''''VIA DO LOOP UNTIL '''''''''''''''''''''''
i = intMinimum
Do
    If i Mod intDeler = 0 Then Exit Do
    i = i + 1
Loop Until i > intMaximum
Range("D4") = i
''''''''''''''''''''''''''VIA DO WHILE  LOOP'''''''''''''''''''''''
i = intMinimum
Do While i <= intMaximum
    If i Mod intDeler = 0 Then Exit Do
    i = i + 1
Loop
Range("E4") = i
''''''''''''''''''''''''''VIA DO UNTIL LOOP '''''''''''''''''''''''
i = intMinimum
Do Until i > intMaximum
    If i Mod intDeler = 0 Then Exit Do
    i = i + 1
Loop
Range("F4") = i
End Sub
Page 36 of 92
Public Sub LussenEnResultaatWegschrijven()
'Variabelen
Dim intMinimum As Integer   'Het minimum
Dim intMaximum As Integer   'Het maximum
Dim intDeler As Integer     'de deler
Dim i As Integer            'variabele voor de lussen
Dim lngRijNummer As Long
'Initialiseren van variabelen
intMinimum = Range("B1")
intDeler = Range("B2")
intMaximum = Range("B3")
lngRijNummer = 4
'Is het minimum kleiner dan het maximum? Zo nee => exit
If intMinimum > intMaximum Then
    MsgBox "Minimum moet kleiner zijn dan maximum !", vbExclamation, "Verkeerde input"
    Exit Sub
End If
'Start op het minimum en ga door tot het maximum
For i = intMinimum To intMaximum
    'is de rest bij deling door de deler = 0 => gevonden => exit lus
    If i Mod intDeler = 0 Then
        Range("B" & lngRijNummer) = i
        lngRijNummer = lngRijNummer + 1
    End If
Next i
End Sub
Page 37 of 92
EasyDifferent ways to loop it through (ID 53)
Sub ListItDown()
Dim text As String
Dim i As Integer
Dim counter As Integer
counter = CInt(InputBox("give a number below 20", "number from 1 to 20"))
i = 0
text = ""
Do
    i = i + 1
    text = text & vbCrLf & "this is a line of text nr." & i
Loop While i < counter
MsgBox text
End Sub
Sub ListItDown2()
Dim text As String
Dim i As Integer
Dim counter As Integer
counter = CInt(InputBox("give a number below 20", "number from 1 to 20"))
text = ""
For i = 1 To counter Step 1
    text = text & vbCrLf & "this is a line of text nr." & i
Next
MsgBox text
End Sub
Sub counting()
Dim Number As Integer
Do While Number < 46
Number = CInt(InputBox("Enter a number"))
Number = Number + 1
Loop
MsgBox ("Counting Stopped at: " & Number)
End Sub
Sub Exercise()
Dim Number As Integer
For Number = 5 To 16
MsgBox (Number)
Next
MsgBox ("Counting Stopped at: " & Number)
End Sub
Page 38 of 92
Sub DoWhileDemo()
    Do While ActiveCell.Value <> Empty
    ActiveCell.Value = ActiveCell.Value * 2
    ActiveCell.Offset(1, 0).Select
    Loop
End Sub
Sub DoUntilDemo()
Do Until IsEmpty(ActiveCell.Value)
ActiveCell.Value = ActiveCell.Value * 2
ActiveCell.Offset(1, 0).Select
Loop
End Sub
EasyGenerate Some Dates (ID 25)
Sub GenerateDates()
Dim i As Integer
Dim InvulDatum As Date
InvulDatum = Date
ActiveSheet.Columns("A").Delete
ActiveSheet.Range("A10").Select
ActiveCell.Value = InvulDatum
For i = 1 To 30
    ActiveCell.Offset(1, 0).Select
    ActiveCell.Value = InvulDatum + i
Next i
ActiveSheet.Columns("A").AutoFit
End Sub
Page 39 of 92
EasyGet prime numbers (ID 26)
Option Explicit
Sub NombrePrimaire()
'Dim selectieZone As Range
Dim cell As Range
'selectieZone = Range("A1:J23")
'selectie.Select
'selectie.Interior.Color = vbYellow
Range("A1:J23").ClearFormats
For Each cell In Range("A1:J23")
    If cell Mod 2 = 0 Then
        cell.Interior.Color = vbRed
    End If
    If cell Mod 3 = 0 Then
        cell.Interior.Color = vbYellow
    End If
    If cell Mod 5 = 0 Then
        cell.Interior.Color = vbGreen
    End If
    If cell Mod 7 = 0 Then
        cell.Interior.Color = vbMagenta
    End If
    If cell Mod 11 = 0 Then
        cell.Interior.Color = vbBlue
    End If
        If cell Mod 13 = 0 Then
        cell.Interior.Color = vbBlack
    End If
    
Next
End Sub
Sub NombrePrimaire2()
Dim i As Integer
i = 0
Dim cell As Range
'Range("A1:J23").ClearFormats
Range("A1:J23").Clear
For Each cell In Range("A1:J23")
    cell.Value = i + 1
    i = i + 1
Next
For Each cell In Range("A1:J23")
    If cell Mod 2 = 0 Then
        cell.Interior.Color = vbRed
    ElseIf cell Mod 3 = 0 Then
        cell.Interior.Color = vbYellow
    ElseIf cell Mod 5 = 0 Then
Page 40 of 92
        cell.Interior.Color = vbGreen
    ElseIf cell Mod 7 = 0 Then
        cell.Interior.Color = vbMagenta
    ElseIf cell Mod 11 = 0 Then
        cell.Interior.Color = vbBlue
    ElseIf cell Mod 13 = 0 Then
        cell.Interior.Color = vbBlack
    End If
    
Next
End Sub
EasyLoop cells and columns (ID 13)
Sub loopColZ()
Dim i As Integer
  For i = 1 To 10000
        Cells(i, 26) = i
    Next i
End Sub
Sub loopColYpair()
Dim i As Integer
  For i = 2 To 200 Step 2
        Cells(i, 25) = i
    Next i
End Sub
Sub loopColW()
Dim i As Integer
   i = 1
    Do While i <= 10
        Cells(i, 23) = i
        i = i + 1
    Loop
End Sub
Page 41 of 92
EasyMore simple loops (ID 104)
Sub CellsExample()
Dim i As Integer
Dim j As Integer
   For i = 1 To 5
        For j = 1 To 5
            Cells(i, j) = "Row " & i & "   Col " & j
        Next j
   Next i
End Sub
Sub loopColZ()
Dim i As Integer
  For i = 1 To 10000
        Cells(i, 26) = i
    Next i
End Sub
Sub loopColYpair()
Dim i As Integer
  For i = 2 To 200 Step 2
        Cells(i, 25) = i
    Next i
End Sub
Sub loopColW()
Dim i As Integer
   i = 1
    Do While i <= 10
        Cells(i, 23) = i
        i = i + 1
    Loop
End Sub
Sub rndNo()
    Dim str As String
    Dim i As Integer
    
    Randomize
    For i = 1 To 5
        str = str & CStr(Rnd) & vbCrLf
    Next i
    
    MsgBox str
End Sub
Page 42 of 92
EasyRandomize numbers (ID 14)
Sub rndNo()
    Dim str As String
    Dim i As Integer
    
    Randomize
    For i = 1 To 5
        str = str & CStr(Rnd) & vbCrLf
    Next i
    
    MsgBox str
End Sub
EasyRemove Styles (ID 64)
Sub removeStyles()
Dim sty As Style
For Each sty In ActiveWorkbook.Styles
If sty.BuiltIn = False Then
sty.Delete
End If
Next
End Sub
Page 43 of 92
EasySheet number and name (ID 71)
Sub addSheetNumber()
    Dim n As Integer
    Dim Sheet As Object
    
    n = 0
    For Each Sheet In Sheets()
        n = n + 1
        Sheet.Activate
        Range("A1").Select
        ActiveCell.FormulaR1C1 = "Sheet" + Str(n)
    Next
    
End Sub
Sub addSheetName()
    Dim n As Integer
    Dim Sheet As Object
    
    n = 0
    For Each Sheet In Sheets()
        n = n + 1
        Sheet.Activate
        Range("A2").Select
        ActiveCell.FormulaR1C1 = ActiveSheet.name
        Debug.Print ActiveSheet.name
    Next
End Sub
Page 44 of 92
EasyShow worksheet names (ID 2)
Sub renderWorksheetNames()
    Dim ws As Worksheet
    
    For Each ws In ActiveWorkbook.Worksheets
    
    ActiveCell.Value = ws.Name
    ActiveCell.Offset(1, 0).Select
    
    
    Next
End Sub
Sub ShowWorkSheets()
    Dim mySheet As Worksheet
    
    For Each mySheet In Worksheets
        MsgBox mySheet.Name
    Next mySheet
End Sub
Sub ShowWorkSheets2()
    
    Dim mySheet As Worksheet
    Dim result As String
    
    For Each mySheet In Worksheets
        result = result & mySheet.Name & vbCrLf
        
    Next mySheet
    
        MsgBox result
        Range("A10") = result
        
End Sub
Page 45 of 92
EasySimple Loops (ID 60)
Sub fillItUp()
Dim x As Integer
Dim y As Integer
x = 1
y = 0
For x = 1 To 30
    ActiveCell.FormulaR1C1 = y + 1
    'ActiveCell.Value = y + 1
    ActiveCell.Offset(1, 0).Select
    y = y + 1
Next
End Sub
Sub fillItUp2()
Dim x As Integer
For x = 1 To 30
    ActiveCell.FormulaR1C1 = x
    ActiveCell.Offset(1, 0).Select
Next
End Sub
Sub fillDatesUp()
Dim x As Integer
Dim y As Date
x = 1
y = Date
For x = 1 To 30
    ActiveCell.FormulaR1C1 = y + x ‐ 1
    ActiveCell.Offset(1, 0).Select
    
Next
End Sub
Sub fillDatesUp2()
Dim x As Integer
Dim y As Date
Dim z As Integer
x = 1
y = Date
z = Day(WorksheetFunction.EoMonth(Date, 1))
For x = 1 To z
    ActiveCell.FormulaR1C1 = y + x ‐ 1
    ActiveCell.Offset(1, 0).Select
    
Next
End Sub
Sub fillItUp3()
Dim x As Integer
Page 46 of 92
x = 1
Do While x <= 30
    ActiveCell.FormulaR1C1 = x
    ActiveCell.Offset(1, 0).Select
    x = x + 1
Loop
End Sub
Sub fillItUp4()
Dim x As Integer
x = 1
Do Until x = 31
    ActiveCell.FormulaR1C1 = x
    ActiveCell.Offset(1, 0).Select
    x = x + 1
Loop
End Sub
Sub fillItUp5()
Dim x As Integer
x = 1
While x < 31
    ActiveCell.FormulaR1C1 = x
    ActiveCell.Offset(1, 0).Select
    x = x + 1
Wend
End Sub
Page 47 of 92
MacroRecorder
Subroutines
EasyChange Theme (ID 32)
Sub Change2FavTheme()
    ActiveWorkbook.ApplyTheme ("F:Program FilesOfficeOffice2010Document Themes 14Foundry.thmx")
    
End Sub
Page 48 of 92
EasyDate Stamp (ID 1)
Sub mkDateNameStamp()
'
' mkDateNameStamp Macro
'
' Keyboard Shortcut: Ctrl+Shift+S
'
    Range("A1").Select
    ActiveCell.FormulaR1C1 = "Danny Puype"
    Range("A2").Select
    ActiveCell.FormulaR1C1 = "Electrabel Ruien"
    Range("A3").Select
    ActiveCell.FormulaR1C1 = "=TODAY()"
    Selection.Copy
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    Application.CutCopyMode = False
    Range("A4").Select
    ActiveCell.FormulaR1C1 = "Tel. : 52436"
    Range("A1:A4").Select
    With Selection
        .HorizontalAlignment = xlLeft
        .VerticalAlignment = xlBottom
        .WrapText = False
        .Orientation = 0
        .AddIndent = False
        .IndentLevel = 0
        .ShrinkToFit = False
        .ReadingOrder = xlContext
        .MergeCells = False
    End With
    Selection.Style = "Heading 4"
    Selection.Font.Bold = False
    Selection.Font.Italic = True
    Columns("A:A").EntireColumn.AutoFit
    Range("A6").Select
End Sub
EasyFormat Labels (ID 4)
Sub mkFormatLabelsGeneral()
'
' mkFormatLabelsGeneral Macro
'
    Selection.Style = "Accent4"
    Selection.Font.Bold = True
    With Selection
        .HorizontalAlignment = xlLeft
    End With
    With Selection.Font
        .Name = "Garamond"
        .Size = 12
    End With
End Sub
Page 49 of 92
EasyGenerate a worksheet (ID 46)
Sub CreateWorksheet()
Dim Answer As Variant
' This macro is used to create a workbook for the
' Georgetown Dry Cleaning Services
' Keyboard Shortcut: Ctrl+Shift+W
Rem check whether there's something already on the sheet
If WorksheetFunction.CountA(Cells) > 0 Then
    Answer = MsgBox("There's content in this sheet " & ActiveSheet.Name & ", continue?", vbYesNo, "Warning")
End If
        
If Answer = vbYes Or Answer = "" Then
    
    Rem Just in case there is anything on the
    Rem worksheet, delete everything
    Range("A:K").Delete
    Range("1:20").Delete
    
    Rem Create the sections and headings of the worksheet
    Range("B2") = "Georgetown Dry Cleaning Services"
    Range("B2").Font.Name = "Rockwell Condensed"
    Range("B2").Font.Size = 24
    Range("B2").Font.Bold = True
    Range("B2").Font.Color = RGB(200, 100, 50)
    Range("B3:J3").Interior.ThemeColor = xlThemeColorAccent3
    Range("B5") = "Order Identification"
    Range("B5").Font.Name = "Cambria"
    Range("B5").Font.Size = 14
    Range("B5").Font.Bold = True
    Range("B5").Font.ThemeColor = 8
    
    Rem To draw a thick line, change the bottom
    Rem borders of the cells from B5 to J5
    Range("B5:J5").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B5:J5").Borders(xlEdgeBottom).Weight = xlMedium
    Range("B5:J5").Borders(xlEdgeBottom).ThemeColor = 8
    Range("B6") = "Receipt #:"
    Range("D6:F6").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D6:F6").Borders(xlEdgeBottom).Weight = xlHairline
    Range("G6") = "Order Status:"
    Range("I6:J6").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("I6:J6").Borders(xlEdgeBottom).Weight = xlHairline
    Range("B7") = "Customer Name:"
    Range("D7:F7").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D7:F7").Borders(xlEdgeBottom).Weight = xlHairline
    Range("G7") = "Customer Phone:"
    Range("I7:J7").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("I7:J7").Borders(xlEdgeBottom).Weight = xlHairline
    
    Rem To draw a thick line, change the bottom
    Rem borders of the cells from B5 to J5
    Range("B8:J8").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B8:J8").Borders(xlEdgeBottom).Weight = xlThin
    Range("B9") = "Date Left:"
    Range("D9:F9").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D9:F9").Borders(xlEdgeBottom).Weight = xlHairline
    Range("G9") = "Time Left:"
    Range("I9:J9").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("I9:J9").Borders(xlEdgeBottom).Weight = xlHairline
Page 50 of 92
    Range("B10") = "Date Expected:"
    Range("D10:F10").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D10:F10").Borders(xlEdgeBottom).Weight = xlHairline
    Range("G10") = "Time Expected:"
    Range("I10:J10").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("I10:J10").Borders(xlEdgeBottom).Weight = xlHairline
    Range("B11") = "Date Picked Up:"
    Range("D11:F11").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D11:F11").Borders(xlEdgeBottom).Weight = xlHairline
    Range("G11") = "Time Picked Up:"
    Range("I11:J11").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("I11:J11").Borders(xlEdgeBottom).Weight = xlHairline
    
    Rem To draw a thick line, change the bottom
    Rem borders of the cells from B5 to J5
    Range("B12:J12").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B12:J12").Borders(xlEdgeBottom).Weight = xlMedium
    Range("B12:J12").Borders(xlEdgeBottom).ThemeColor = 8
    Range("B13") = "Items to Clean"
    Range("B13").Font.Name = "Cambria"
    Range("B13").Font.Size = 14
    Range("B13").Font.Bold = True
    Range("B13").Font.ThemeColor = 8
    Range("B14") = "Item"
    Range("D14") = "Unit Price"
    Range("E14") = "Qty"
    Range("F14") = "Sub‐Total"
    Range("B14:F14").Borders(xlEdgeLeft).LineStyle = xlContinuous
    Range("B14:F14").Borders(xlEdgeLeft).Weight = xlThin
    Range("B14:F14").Borders(xlEdgeTop).LineStyle = xlContinuous
    Range("B14:F14").Borders(xlEdgeTop).Weight = xlThin
    Range("B14:F14").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("B14:F14").Borders(xlEdgeRight).Weight = xlThin
    Range("B14:F14").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B14:F14").Borders(xlEdgeBottom).Weight = xlThin
    Range("C14").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("C14").Borders(xlEdgeRight).Weight = xlThin
    Range("D14").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("D14").Borders(xlEdgeRight).Weight = xlThin
    Range("E14").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("E14").Borders(xlEdgeRight).Weight = xlThin
    Range("B15") = "Shirts"
    Range("B15").Borders(xlEdgeLeft).LineStyle = xlContinuous
    Range("B15").Borders(xlEdgeLeft).Weight = xlThin
    Range("H15") = "Order Summary"
    Range("H15").Font.Name = "Cambria"
    Range("H15").Font.Size = 14
    Range("H15").Font.Bold = True
    Range("H15").Font.ThemeColor = 8
    Range("B16") = "Pants"
    Range("B16").Borders(xlEdgeLeft).LineStyle = xlContinuous
    Range("B16").Borders(xlEdgeLeft).Weight = xlThin
    Range("B17") = "None"
    Range("B17").Borders(xlEdgeLeft).LineStyle = xlContinuous
    Range("B17").Borders(xlEdgeLeft).Weight = xlThin
    Range("H17") = "Cleaning Total:"
    Range("I17").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("I17").Borders(xlEdgeBottom).Weight = xlHairline
    Range("B18") = "None"
    Range("B18").Borders(xlEdgeLeft).LineStyle = xlContinuous
    Range("B18").Borders(xlEdgeLeft).Weight = xlThin
    Range("H18") = "Tax Rate:"
    Range("I18").Borders(xlEdgeBottom).LineStyle = xlContinuous
Page 51 of 92
    Range("I18").Borders(xlEdgeBottom).Weight = xlHairline
    Range("I18") = "5.75"
    Range("J18") = "%"
    Range("B19") = "None"
    Range("B19").Borders(xlEdgeLeft).LineStyle = xlContinuous
    Range("B19").Borders(xlEdgeLeft).Weight = xlThin
    Range("H19") = "Tax Amount:"
    Range("I19").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("I19").Borders(xlEdgeBottom).Weight = xlHairline
    Range("B20") = "None"
    Range("B20").Borders(xlEdgeLeft).LineStyle = xlContinuous
    Range("B20").Borders(xlEdgeLeft).Weight = xlThin
    Range("C15").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("C15").Borders(xlEdgeRight).Weight = xlThin
    Range("C16").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("C16").Borders(xlEdgeRight).Weight = xlThin
    Range("C17").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("C17").Borders(xlEdgeRight).Weight = xlThin
    Range("C18").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("C18").Borders(xlEdgeRight).Weight = xlThin
    Range("C19").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("C19").Borders(xlEdgeRight).Weight = xlThin
    Range("C20").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("C20").Borders(xlEdgeRight).Weight = xlThin
    Range("B14:C14").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B14:C14").Borders(xlEdgeBottom).Weight = xlThin
    Range("B15:C15").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B15:C15").Borders(xlEdgeBottom).Weight = xlThin
    Range("D15:F15").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D15:F15").Borders(xlEdgeBottom).Weight = xlHairline
    Range("D15").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("D15").Borders(xlEdgeRight).Weight = xlHairline
    Range("E15").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("E15").Borders(xlEdgeRight).Weight = xlHairline
    Range("F15").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("F15").Borders(xlEdgeRight).Weight = xlThin
    Range("B16:C16").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B16:C16").Borders(xlEdgeBottom).Weight = xlThin
    Range("D16:F16").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D16:F16").Borders(xlEdgeBottom).Weight = xlHairline
    Range("D16").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("D16").Borders(xlEdgeRight).Weight = xlHairline
    Range("E16").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("E16").Borders(xlEdgeRight).Weight = xlHairline
    Range("F16").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("F16").Borders(xlEdgeRight).Weight = xlThin
    Range("B17:C17").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B17:C17").Borders(xlEdgeBottom).Weight = xlThin
    Range("D17:F17").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D17:F17").Borders(xlEdgeBottom).Weight = xlHairline
    Range("D17").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("D17").Borders(xlEdgeRight).Weight = xlHairline
    Range("E17").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("E17").Borders(xlEdgeRight).Weight = xlHairline
    Range("F17").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("F17").Borders(xlEdgeRight).Weight = xlThin
    Range("B18:C18").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B18:C18").Borders(xlEdgeBottom).Weight = xlThin
    Range("D18:F18").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D18:F18").Borders(xlEdgeBottom).Weight = xlHairline
    Range("D18").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("D18").Borders(xlEdgeRight).Weight = xlHairline
    Range("E18").Borders(xlEdgeRight).LineStyle = xlContinuous
Page 52 of 92
    Range("E18").Borders(xlEdgeRight).Weight = xlHairline
    Range("F18").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("F18").Borders(xlEdgeRight).Weight = xlThin
    Range("B19:C19").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B19:C19").Borders(xlEdgeBottom).Weight = xlThin
    Range("D19:F19").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("D19:F19").Borders(xlEdgeBottom).Weight = xlHairline
    Range("D19").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("D19").Borders(xlEdgeRight).Weight = xlHairline
    Range("E19").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("E19").Borders(xlEdgeRight).Weight = xlHairline
    Range("F19").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("F19").Borders(xlEdgeRight).Weight = xlThin
    Range("B20:F20").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("B20:F20").Borders(xlEdgeBottom).Weight = xlThin
    Range("D20").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("D20").Borders(xlEdgeRight).Weight = xlHairline
    Range("E20").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("E20").Borders(xlEdgeRight).Weight = xlHairline
    Range("F20").Borders(xlEdgeRight).LineStyle = xlContinuous
    Range("F20").Borders(xlEdgeRight).Weight = xlThin
    Range("H20") = "Order Total:"
    Range("I20").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("I20").Borders(xlEdgeBottom).Weight = xlHairline
    
    Rem Change the widths and heights of some columns and rows
    Rem In previous lessons, we learned all these things
    Range("E:E, G:G").ColumnWidth = 4
    Columns("H").ColumnWidth = 14
    Columns("J").ColumnWidth = 1.75
    Rows("3").RowHeight = 2
    Range("8:8, 12:12").RowHeight = 8
    
    Rem Merge the cells H15, I15, H16, and I16
    Range("H15:I16").MergeCells = True
    
    Rem Align the merged text to the left
    Range("H15:H16").VerticalAlignment = xlBottom
    Range("H16").Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range("H16:I16").Borders(xlEdgeBottom).Weight = xlMedium
    Range("H16:I16").Borders(xlEdgeBottom).ThemeColor = 8
    
    Rem Hide the gridlines
    ActiveWindow.DisplayGridlines = False
    
    If bWorksheetExists("GTDS") Then
    MsgBox ("workbook exists")
    Else
    ActiveSheet.Name = "GTDS"
    Worksheets.Add after:=Worksheets("GTDS")
    Worksheets("GTDS").Select
    ActiveSheet.Next.Select
    End If
End If
End Sub
Page 53 of 92
EasyPage Breaks and Gridlines off (ID 33)
Sub PageBreaksOff()
    ActiveSheet.DisplayPageBreaks = False
End Sub
Sub windowPagebreaks()
If ActiveSheet.DisplayPageBreaks = True Then
ActiveSheet.DisplayPageBreaks = False
Else
ActiveSheet.DisplayPageBreaks = True
End If
End Sub
Sub windowGridlines()
If ActiveWindow.DisplayGridlines = True Then
ActiveWindow.DisplayGridlines = False
Else
ActiveWindow.DisplayGridlines = True
End If
End Sub
Page 54 of 92
Ranges
Subroutines
EasyChange Sign (ID 103)
Sub ChangeSign()
    Dim Cell As Range
        For Each Cell In Range("A1:E50")
            If IsNumeric(Cell.Value) Then
            Cell.Value = Cell.Value * ‐1
        End If
Next Cell
End Sub
EasyDifferent Range properties (ID 47)
Sub MoreEntrees()
    Dim Number As Double
    
    Range("B2").Formula = 24.5 * 42.5
    Range("B3").FormulaR1C1Local = "Danny"
    Range("B4").Formula = "=today()"
    Range("A1").Offset(1, 0).Select
    
    Number = 7942.225 * 202.46
    ActiveCell = MsgBox(Int(Number), vbOKOnly, "Exercise")
    ActiveCell.Offset(1, 0).Select
    
    Number = 20502.48
    ActiveCell = Format(Number, "currency")
    Beep
End Sub
Page 55 of 92
EasyEnter values in a range (ID 8)
Sub EnterSomeValues()
    Worksheets("EnterSomeValue").Range("A1:A5") = "AB"
    Worksheets("EnterSomeValue").Range("B1", "B5") = "AB"
    Worksheets("EnterSomeValue").Range("C1, C3, C5") = "AAA"
End Sub
Page 56 of 92
EasyGet prime numbers (ID 26)
Option Explicit
Sub NombrePrimaire()
'Dim selectieZone As Range
Dim cell As Range
'selectieZone = Range("A1:J23")
'selectie.Select
'selectie.Interior.Color = vbYellow
Range("A1:J23").ClearFormats
For Each cell In Range("A1:J23")
    If cell Mod 2 = 0 Then
        cell.Interior.Color = vbRed
    End If
    If cell Mod 3 = 0 Then
        cell.Interior.Color = vbYellow
    End If
    If cell Mod 5 = 0 Then
        cell.Interior.Color = vbGreen
    End If
    If cell Mod 7 = 0 Then
        cell.Interior.Color = vbMagenta
    End If
    If cell Mod 11 = 0 Then
        cell.Interior.Color = vbBlue
    End If
        If cell Mod 13 = 0 Then
        cell.Interior.Color = vbBlack
    End If
    
Next
End Sub
Sub NombrePrimaire2()
Dim i As Integer
i = 0
Dim cell As Range
'Range("A1:J23").ClearFormats
Range("A1:J23").Clear
For Each cell In Range("A1:J23")
    cell.Value = i + 1
    i = i + 1
Next
For Each cell In Range("A1:J23")
    If cell Mod 2 = 0 Then
        cell.Interior.Color = vbRed
    ElseIf cell Mod 3 = 0 Then
        cell.Interior.Color = vbYellow
    ElseIf cell Mod 5 = 0 Then
Page 57 of 92
        cell.Interior.Color = vbGreen
    ElseIf cell Mod 7 = 0 Then
        cell.Interior.Color = vbMagenta
    ElseIf cell Mod 11 = 0 Then
        cell.Interior.Color = vbBlue
    ElseIf cell Mod 13 = 0 Then
        cell.Interior.Color = vbBlack
    End If
    
Next
End Sub
EasySimple Copy (ID 95)
Sub CopyOne()
    Worksheets(1).Activate
    Range("A1").Copy Range("A10")
End Sub
Page 58 of 92
Rows and Columns
Subroutines
EasyGenerate Some Dates (ID 25)
Sub GenerateDates()
Dim i As Integer
Dim InvulDatum As Date
InvulDatum = Date
ActiveSheet.Columns("A").Delete
ActiveSheet.Range("A10").Select
ActiveCell.Value = InvulDatum
For i = 1 To 30
    ActiveCell.Offset(1, 0).Select
    ActiveCell.Value = InvulDatum + i
Next i
ActiveSheet.Columns("A").AutoFit
End Sub
EasyHighlight selected column and row (ID 28)
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
    Cells.Interior.ColorIndex = xlNone
    With ActiveCell
        .EntireRow.Interior.ColorIndex = 36
        .EntireColumn.Interior.ColorIndex = 36
    End With
End Sub
Page 59 of 92
EasyLoop cells and columns (ID 13)
Sub loopColZ()
Dim i As Integer
  For i = 1 To 10000
        Cells(i, 26) = i
    Next i
End Sub
Sub loopColYpair()
Dim i As Integer
  For i = 2 To 200 Step 2
        Cells(i, 25) = i
    Next i
End Sub
Sub loopColW()
Dim i As Integer
   i = 1
    Do While i <= 10
        Cells(i, 23) = i
        i = i + 1
    Loop
End Sub
Page 60 of 92
Simple Functions
Functions
EasyCalculate Volume (ID 17)
Function Volume(width, height, depth)
Dim result
result = width * height * depth
Volume = result
End Function
EasyFunction to trigger of full name (ID 38)
Private Function GetFullName$(ByVal First As String, ByVal Last As String)
Dim Fname As String
Fname = First & Last
GetFullName$ = Fname
End Function
Sub Exercise()
Dim FirstName As String, LastName As String
Dim FullName As String
FirstName = "Raymond "
LastName = "Kouma"
FullName = GetFullName(FirstName, LastName)
ActiveCell.FormulaR1C1 = FullName
End Sub
EasyGet the full name (ID 44)
Function GetFullName$(FirstName, LastName)
'Dim FirstName$, LastName$
'FirstName = "Raymond"
'LastName = "Kouma"
    GetFullName$ = LastName & ", " & FirstName
End Function
Page 61 of 92
EasyGet user (ID 18)
Function User()
' Returns the name of the current user
  User = Application.UserName
End Function
EasySome simple Functions (ID 85)
Function CubeRoot(number)
    CubeRoot = number ^ (1 / 3)
End Function
Public Function SumItUp(ByRef myRange As Range)
    SumItUp = WorksheetFunction.Sum(myRange)
End Function
Public Function cnvTh(NumberKWH) As Double
   Dim result
   result = NumberKWH / 29.30711
   cnvTh = Format(result, "0,000.0000")
End Function
Public Function cnvKWH(NumberTh) As Double
   Dim result
   result = NumberTh * 29.30711
   cnvKWH = Format(result, "0,000.0000")
End Function
Public Function CelToFahr(valueCelsius As Double)
    CelToFahr = 32 + (9 / 5) * valueCelsius
End Function
Public Function FahrToCel(valueFahr As Double)
    FahrToCel = (valueFahr ‐ 32) * 5 / 9
End Function
Subroutines
Page 62 of 92
EasyControl Num Sign (ID 86)
Function NumSign(InVal)
    Select Case InVal
        Case Is < 0
            NumSign = "Negative"
        Case 0
            NumSign = "Zero"
        Case Is > 0
            NumSign = "Positive"
    End Select
End Function
Page 63 of 92
Simple Sample
Functions
EasyGet user (ID 18)
Function User()
' Returns the name of the current user
  User = Application.UserName
End Function
Subroutines
EasyChange Theme (ID 32)
Sub Change2FavTheme()
    ActiveWorkbook.ApplyTheme ("F:Program FilesOfficeOffice2010Document Themes 14Foundry.thmx")
    
End Sub
Page 64 of 92
EasyDate Stamp (ID 1)
Sub mkDateNameStamp()
'
' mkDateNameStamp Macro
'
' Keyboard Shortcut: Ctrl+Shift+S
'
    Range("A1").Select
    ActiveCell.FormulaR1C1 = "Danny Puype"
    Range("A2").Select
    ActiveCell.FormulaR1C1 = "Electrabel Ruien"
    Range("A3").Select
    ActiveCell.FormulaR1C1 = "=TODAY()"
    Selection.Copy
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    Application.CutCopyMode = False
    Range("A4").Select
    ActiveCell.FormulaR1C1 = "Tel. : 52436"
    Range("A1:A4").Select
    With Selection
        .HorizontalAlignment = xlLeft
        .VerticalAlignment = xlBottom
        .WrapText = False
        .Orientation = 0
        .AddIndent = False
        .IndentLevel = 0
        .ShrinkToFit = False
        .ReadingOrder = xlContext
        .MergeCells = False
    End With
    Selection.Style = "Heading 4"
    Selection.Font.Bold = False
    Selection.Font.Italic = True
    Columns("A:A").EntireColumn.AutoFit
    Range("A6").Select
End Sub
EasyEnd of line (ID 49)
Sub messageBox()
    ActiveCell = MsgBox("Your logon credentials have been checked " & _
    "and your application has been approved: Congratulations!" & _
    vbCrLf & "Before leaving, would you like " & _
    "to take our survey survey now?", _
    vbYesNo Or vbQuestion, _
    "Crofton Circle of Friends ‐ Membership Application")
End Sub
Page 65 of 92
EasyEnter values in a range (ID 8)
Sub EnterSomeValues()
    Worksheets("EnterSomeValue").Range("A1:A5") = "AB"
    Worksheets("EnterSomeValue").Range("B1", "B5") = "AB"
    Worksheets("EnterSomeValue").Range("C1, C3, C5") = "AAA"
End Sub
EasyFormat Labels (ID 4)
Sub mkFormatLabelsGeneral()
'
' mkFormatLabelsGeneral Macro
'
    Selection.Style = "Accent4"
    Selection.Font.Bold = True
    With Selection
        .HorizontalAlignment = xlLeft
    End With
    With Selection.Font
        .Name = "Garamond"
        .Size = 12
    End With
End Sub
EasyGenerate Some Dates (ID 25)
Sub GenerateDates()
Dim i As Integer
Dim InvulDatum As Date
InvulDatum = Date
ActiveSheet.Columns("A").Delete
ActiveSheet.Range("A10").Select
ActiveCell.Value = InvulDatum
For i = 1 To 30
    ActiveCell.Offset(1, 0).Select
    ActiveCell.Value = InvulDatum + i
Next i
ActiveSheet.Columns("A").AutoFit
End Sub
Page 66 of 92
EasyGet something with vlookup (ID 98)
Sub GetPrice()
    Dim PartNum As Variant
    Dim Price As Double
    PartNum = InputBox("Enter the Part Number")
    Sheets("Prices").Activate
    Price = WorksheetFunction.VLookup(PartNum, Range("PriceList"), 2, False)
    MsgBox PartNum & " costs " & Price
End Sub
EasyGet your grade (ID 12)
Sub getGrade()
Dim LetterGrade As String
Dim Grade As Integer
Dim Answer As Variant
Answer = InputBox("what's your grade", "Grade ?")
Grade = CInt(Answer)
   Select Case Grade
        Case Is >= 90
            LetterGrade = "A"
        Case Is >= 80
            LetterGrade = "B"
        Case Is >= 70
            LetterGrade = "C"
        Case Is >= 60
            LetterGrade = "D"
        Case Else
            LetterGrade = "Sorry"
    End Select
MsgBox LetterGrade
End Sub
Page 67 of 92
EasyGo voting (ID 108)
Sub goVoting()
Dim Age As Integer
Dim Answer As Variant
Answer = InputBox("what's your age please?", "Voting Topic")
Age = CInt(Answer)
 If Age >= 18 And Age < 22 Then
        MsgBox "You can vote"
    ElseIf Age >= 22 And Age < 62 Then
        MsgBox "You can drink and vote"
    ElseIf Age >= 62 Then
        MsgBox "You are eligible to apply for Social Security Benefit"
    Else
        MsgBox "You cannot drink or vote"
    End If
End Sub
EasyIs this your name? (ID 23)
Sub GuessName()
Dim msg As String
Dim ans As String
msg = "Is your name " & Application.UserName & "?"
ans = MsgBox(msg, vbYesNo)
If ans = vbNo Then MsgBox "Oh, never mind."
If ans = vbYes Then MsgBox "I must be clairvoyant!"
End Sub
Page 68 of 92
EasyLoop cells and columns (ID 13)
Sub loopColZ()
Dim i As Integer
  For i = 1 To 10000
        Cells(i, 26) = i
    Next i
End Sub
Sub loopColYpair()
Dim i As Integer
  For i = 2 To 200 Step 2
        Cells(i, 25) = i
    Next i
End Sub
Sub loopColW()
Dim i As Integer
   i = 1
    Do While i <= 10
        Cells(i, 23) = i
        i = i + 1
    Loop
End Sub
EasyNr of executions in a not empty variable (ID 80)
Sub staticCounter()
Static counter As Integer
Dim Msg As String
    counter = counter + 1
    Msg = "Number of executions: " & counter
    MsgBox Msg
End Sub
Page 69 of 92
EasyPage Breaks and Gridlines off (ID 33)
Sub PageBreaksOff()
    ActiveSheet.DisplayPageBreaks = False
End Sub
Sub windowPagebreaks()
If ActiveSheet.DisplayPageBreaks = True Then
ActiveSheet.DisplayPageBreaks = False
Else
ActiveSheet.DisplayPageBreaks = True
End If
End Sub
Sub windowGridlines()
If ActiveWindow.DisplayGridlines = True Then
ActiveWindow.DisplayGridlines = False
Else
ActiveWindow.DisplayGridlines = True
End If
End Sub
EasyPMT calculation (ID 97)
Sub PmtCalc()
    Dim IntRate As Double
    Dim LoanAmt As Double
    Dim Periods As Integer
    IntRate = 0.0825 / 12
    Periods = 30 * 12
    LoanAmt = 150000
    MsgBox WorksheetFunction.Pmt(IntRate, Periods, LoanAmt)
End Sub
EasyRandomize numbers (ID 14)
Sub rndNo()
    Dim str As String
    Dim i As Integer
    
    Randomize
    For i = 1 To 5
        str = str & CStr(Rnd) & vbCrLf
    Next i
    
    MsgBox str
End Sub
Page 70 of 92
EasySheet number and name (ID 71)
Sub addSheetNumber()
    Dim n As Integer
    Dim Sheet As Object
    
    n = 0
    For Each Sheet In Sheets()
        n = n + 1
        Sheet.Activate
        Range("A1").Select
        ActiveCell.FormulaR1C1 = "Sheet" + Str(n)
    Next
    
End Sub
Sub addSheetName()
    Dim n As Integer
    Dim Sheet As Object
    
    n = 0
    For Each Sheet In Sheets()
        n = n + 1
        Sheet.Activate
        Range("A2").Select
        ActiveCell.FormulaR1C1 = ActiveSheet.name
        Debug.Print ActiveSheet.name
    Next
End Sub
Page 71 of 92
EasyShow worksheet names (ID 2)
Sub renderWorksheetNames()
    Dim ws As Worksheet
    
    For Each ws In ActiveWorkbook.Worksheets
    
    ActiveCell.Value = ws.Name
    ActiveCell.Offset(1, 0).Select
    
    
    Next
End Sub
Sub ShowWorkSheets()
    Dim mySheet As Worksheet
    
    For Each mySheet In Worksheets
        MsgBox mySheet.Name
    Next mySheet
End Sub
Sub ShowWorkSheets2()
    
    Dim mySheet As Worksheet
    Dim result As String
    
    For Each mySheet In Worksheets
        result = result & mySheet.Name & vbCrLf
        
    Next mySheet
    
        MsgBox result
        Range("A10") = result
        
End Sub
EasySimple Copy (ID 95)
Sub CopyOne()
    Worksheets(1).Activate
    Range("A1").Copy Range("A10")
End Sub
Page 72 of 92
EasySimple Loops (ID 60)
Sub fillItUp()
Dim x As Integer
Dim y As Integer
x = 1
y = 0
For x = 1 To 30
    ActiveCell.FormulaR1C1 = y + 1
    'ActiveCell.Value = y + 1
    ActiveCell.Offset(1, 0).Select
    y = y + 1
Next
End Sub
Sub fillItUp2()
Dim x As Integer
For x = 1 To 30
    ActiveCell.FormulaR1C1 = x
    ActiveCell.Offset(1, 0).Select
Next
End Sub
Sub fillDatesUp()
Dim x As Integer
Dim y As Date
x = 1
y = Date
For x = 1 To 30
    ActiveCell.FormulaR1C1 = y + x ‐ 1
    ActiveCell.Offset(1, 0).Select
    
Next
End Sub
Sub fillDatesUp2()
Dim x As Integer
Dim y As Date
Dim z As Integer
x = 1
y = Date
z = Day(WorksheetFunction.EoMonth(Date, 1))
For x = 1 To z
    ActiveCell.FormulaR1C1 = y + x ‐ 1
    ActiveCell.Offset(1, 0).Select
    
Next
End Sub
Sub fillItUp3()
Dim x As Integer
Page 73 of 92
x = 1
Do While x <= 30
    ActiveCell.FormulaR1C1 = x
    ActiveCell.Offset(1, 0).Select
    x = x + 1
Loop
End Sub
Sub fillItUp4()
Dim x As Integer
x = 1
Do Until x = 31
    ActiveCell.FormulaR1C1 = x
    ActiveCell.Offset(1, 0).Select
    x = x + 1
Loop
End Sub
Sub fillItUp5()
Dim x As Integer
x = 1
While x < 31
    ActiveCell.FormulaR1C1 = x
    ActiveCell.Offset(1, 0).Select
    x = x + 1
Wend
End Sub
EasySimple text manipulations: Get the Ascii value and Reverse text (ID 4
Sub ChrValues()
    Dim Character As String
    Dim Number As Long
    
    Number = InputBox("Please type a number", "Input of number2ChrValue")
    Character = ChrW(Number)
    ActiveCell = "The ASCII character of " & Number & " is " & Character
End Sub
Sub ReverseIt()
    Dim StrValue As String
    Dim StrRev As String
    StrValue = "République d'Afrique du Sud"
    StrRev = StrReverse(StrValue)
    ActiveCell = StrValue & vbCrLf & StrRev
End Sub
Page 74 of 92
Vb acourse excelcodeeasy
Vb acourse excelcodeeasy
Vb acourse excelcodeeasy
Vb acourse excelcodeeasy
Vb acourse excelcodeeasy
Vb acourse excelcodeeasy
Vb acourse excelcodeeasy
Vb acourse excelcodeeasy
Vb acourse excelcodeeasy
Vb acourse excelcodeeasy
Vb acourse excelcodeeasy
Vb acourse excelcodeeasy
Vb acourse excelcodeeasy
Vb acourse excelcodeeasy
Vb acourse excelcodeeasy
Vb acourse excelcodeeasy
Vb acourse excelcodeeasy
Vb acourse excelcodeeasy

More Related Content

More from HuuCuong3

Bai giang ung dung excel 2010 tap 3
Bai giang ung dung excel 2010   tap 3Bai giang ung dung excel 2010   tap 3
Bai giang ung dung excel 2010 tap 3HuuCuong3
 
Bai giang ung dung excel 2010 tap 1
Bai giang ung dung excel 2010   tap 1Bai giang ung dung excel 2010   tap 1
Bai giang ung dung excel 2010 tap 1HuuCuong3
 
Bai giang ung dung excel 2010 tap 2
Bai giang ung dung excel 2010   tap 2Bai giang ung dung excel 2010   tap 2
Bai giang ung dung excel 2010 tap 2HuuCuong3
 
Bai giang ung dung excel 2010 tap 4
Bai giang ung dung excel 2010   tap 4Bai giang ung dung excel 2010   tap 4
Bai giang ung dung excel 2010 tap 4HuuCuong3
 
Mos excel 2010_bai_tap_luyen_thi_mos_excel
Mos excel 2010_bai_tap_luyen_thi_mos_excelMos excel 2010_bai_tap_luyen_thi_mos_excel
Mos excel 2010_bai_tap_luyen_thi_mos_excelHuuCuong3
 
Mos excel 2010_bai_07_lam_viec_voi_do_hoa_graphics
Mos excel 2010_bai_07_lam_viec_voi_do_hoa_graphicsMos excel 2010_bai_07_lam_viec_voi_do_hoa_graphics
Mos excel 2010_bai_07_lam_viec_voi_do_hoa_graphicsHuuCuong3
 
Mos excel 2010_bai_08_phan_tich_to_chuc_va_chia_se_workbooks
Mos excel 2010_bai_08_phan_tich_to_chuc_va_chia_se_workbooksMos excel 2010_bai_08_phan_tich_to_chuc_va_chia_se_workbooks
Mos excel 2010_bai_08_phan_tich_to_chuc_va_chia_se_workbooksHuuCuong3
 
Mos excel 2010_bai_05_xem_va_in_workbooks
Mos excel 2010_bai_05_xem_va_in_workbooksMos excel 2010_bai_05_xem_va_in_workbooks
Mos excel 2010_bai_05_xem_va_in_workbooksHuuCuong3
 
Mos excel 2010_bai_04_dinh_dang_worksheet
Mos excel 2010_bai_04_dinh_dang_worksheetMos excel 2010_bai_04_dinh_dang_worksheet
Mos excel 2010_bai_04_dinh_dang_worksheetHuuCuong3
 
Mos excel 2010_bai_01_gioi_thieu_excel
Mos excel 2010_bai_01_gioi_thieu_excelMos excel 2010_bai_01_gioi_thieu_excel
Mos excel 2010_bai_01_gioi_thieu_excelHuuCuong3
 
Mos excel 2010_bai_02_xay_dung_o_du_lieu
Mos excel 2010_bai_02_xay_dung_o_du_lieuMos excel 2010_bai_02_xay_dung_o_du_lieu
Mos excel 2010_bai_02_xay_dung_o_du_lieuHuuCuong3
 
Mos excel 2010_bai_03_su_dung_nhan_dan
Mos excel 2010_bai_03_su_dung_nhan_danMos excel 2010_bai_03_su_dung_nhan_dan
Mos excel 2010_bai_03_su_dung_nhan_danHuuCuong3
 
8 tuần học Excel - Tuần 3 : Kết hợp hàm trong Excel
8 tuần học Excel - Tuần 3 : Kết hợp hàm trong Excel8 tuần học Excel - Tuần 3 : Kết hợp hàm trong Excel
8 tuần học Excel - Tuần 3 : Kết hợp hàm trong ExcelHuuCuong3
 
8 tuần học Excel - Tuần 2 : Các hàm cơ bản trong Excel
8 tuần học Excel - Tuần 2 : Các hàm cơ bản trong Excel8 tuần học Excel - Tuần 2 : Các hàm cơ bản trong Excel
8 tuần học Excel - Tuần 2 : Các hàm cơ bản trong ExcelHuuCuong3
 
Gioithieu excel
Gioithieu excelGioithieu excel
Gioithieu excelHuuCuong3
 
Làm quen với Excel , cách nhập liệu , công thức và hàm
Làm quen với Excel , cách nhập liệu , công thức và hàmLàm quen với Excel , cách nhập liệu , công thức và hàm
Làm quen với Excel , cách nhập liệu , công thức và hàmHuuCuong3
 
Excel macros tutorial
Excel macros tutorialExcel macros tutorial
Excel macros tutorialHuuCuong3
 
Tu hoc Excel 2018
Tu hoc Excel 2018Tu hoc Excel 2018
Tu hoc Excel 2018HuuCuong3
 
Ham excel ke toan
Ham excel ke toanHam excel ke toan
Ham excel ke toanHuuCuong3
 
Hướng dẫn tự học Word 2007
Hướng dẫn tự học Word 2007Hướng dẫn tự học Word 2007
Hướng dẫn tự học Word 2007HuuCuong3
 

More from HuuCuong3 (20)

Bai giang ung dung excel 2010 tap 3
Bai giang ung dung excel 2010   tap 3Bai giang ung dung excel 2010   tap 3
Bai giang ung dung excel 2010 tap 3
 
Bai giang ung dung excel 2010 tap 1
Bai giang ung dung excel 2010   tap 1Bai giang ung dung excel 2010   tap 1
Bai giang ung dung excel 2010 tap 1
 
Bai giang ung dung excel 2010 tap 2
Bai giang ung dung excel 2010   tap 2Bai giang ung dung excel 2010   tap 2
Bai giang ung dung excel 2010 tap 2
 
Bai giang ung dung excel 2010 tap 4
Bai giang ung dung excel 2010   tap 4Bai giang ung dung excel 2010   tap 4
Bai giang ung dung excel 2010 tap 4
 
Mos excel 2010_bai_tap_luyen_thi_mos_excel
Mos excel 2010_bai_tap_luyen_thi_mos_excelMos excel 2010_bai_tap_luyen_thi_mos_excel
Mos excel 2010_bai_tap_luyen_thi_mos_excel
 
Mos excel 2010_bai_07_lam_viec_voi_do_hoa_graphics
Mos excel 2010_bai_07_lam_viec_voi_do_hoa_graphicsMos excel 2010_bai_07_lam_viec_voi_do_hoa_graphics
Mos excel 2010_bai_07_lam_viec_voi_do_hoa_graphics
 
Mos excel 2010_bai_08_phan_tich_to_chuc_va_chia_se_workbooks
Mos excel 2010_bai_08_phan_tich_to_chuc_va_chia_se_workbooksMos excel 2010_bai_08_phan_tich_to_chuc_va_chia_se_workbooks
Mos excel 2010_bai_08_phan_tich_to_chuc_va_chia_se_workbooks
 
Mos excel 2010_bai_05_xem_va_in_workbooks
Mos excel 2010_bai_05_xem_va_in_workbooksMos excel 2010_bai_05_xem_va_in_workbooks
Mos excel 2010_bai_05_xem_va_in_workbooks
 
Mos excel 2010_bai_04_dinh_dang_worksheet
Mos excel 2010_bai_04_dinh_dang_worksheetMos excel 2010_bai_04_dinh_dang_worksheet
Mos excel 2010_bai_04_dinh_dang_worksheet
 
Mos excel 2010_bai_01_gioi_thieu_excel
Mos excel 2010_bai_01_gioi_thieu_excelMos excel 2010_bai_01_gioi_thieu_excel
Mos excel 2010_bai_01_gioi_thieu_excel
 
Mos excel 2010_bai_02_xay_dung_o_du_lieu
Mos excel 2010_bai_02_xay_dung_o_du_lieuMos excel 2010_bai_02_xay_dung_o_du_lieu
Mos excel 2010_bai_02_xay_dung_o_du_lieu
 
Mos excel 2010_bai_03_su_dung_nhan_dan
Mos excel 2010_bai_03_su_dung_nhan_danMos excel 2010_bai_03_su_dung_nhan_dan
Mos excel 2010_bai_03_su_dung_nhan_dan
 
8 tuần học Excel - Tuần 3 : Kết hợp hàm trong Excel
8 tuần học Excel - Tuần 3 : Kết hợp hàm trong Excel8 tuần học Excel - Tuần 3 : Kết hợp hàm trong Excel
8 tuần học Excel - Tuần 3 : Kết hợp hàm trong Excel
 
8 tuần học Excel - Tuần 2 : Các hàm cơ bản trong Excel
8 tuần học Excel - Tuần 2 : Các hàm cơ bản trong Excel8 tuần học Excel - Tuần 2 : Các hàm cơ bản trong Excel
8 tuần học Excel - Tuần 2 : Các hàm cơ bản trong Excel
 
Gioithieu excel
Gioithieu excelGioithieu excel
Gioithieu excel
 
Làm quen với Excel , cách nhập liệu , công thức và hàm
Làm quen với Excel , cách nhập liệu , công thức và hàmLàm quen với Excel , cách nhập liệu , công thức và hàm
Làm quen với Excel , cách nhập liệu , công thức và hàm
 
Excel macros tutorial
Excel macros tutorialExcel macros tutorial
Excel macros tutorial
 
Tu hoc Excel 2018
Tu hoc Excel 2018Tu hoc Excel 2018
Tu hoc Excel 2018
 
Ham excel ke toan
Ham excel ke toanHam excel ke toan
Ham excel ke toan
 
Hướng dẫn tự học Word 2007
Hướng dẫn tự học Word 2007Hướng dẫn tự học Word 2007
Hướng dẫn tự học Word 2007
 

Recently uploaded

Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension AidPhilip Schwarz
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...Shane Coughlan
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...masabamasaba
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech studentsHimanshiGarg82
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...Jittipong Loespradit
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...masabamasaba
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...masabamasaba
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfonteinmasabamasaba
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...masabamasaba
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationJuha-Pekka Tolvanen
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyviewmasabamasaba
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastPapp Krisztián
 
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benonimasabamasaba
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnAmarnathKambale
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...masabamasaba
 

Recently uploaded (20)

Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the Situation
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 

Vb acourse excelcodeeasy