Question: Observe the VBA subroutine code below: Sub Macro1() ActiveCell.Offset(1, 1).Range(A1).Select With Selection.Interior .Pattern = xlSolid .PatternColorIndex = xlAutomatic .Color = 65535 .TintAndShade = 0 .PatternTintAndShade

Observe the VBA subroutine code below: Sub Macro1() ActiveCell.Offset(1, 1).Range("A1").Select With Selection.Interior .Pattern = xlSolid .PatternColorIndex = xlAutomatic .Color = 65535 .TintAndShade = 0 .PatternTintAndShade = 0 End With ActiveCell.Offset(0, -1).Range("A1").Select Selection.Font.Bold = True Selection.Font.Size = 12 Selection.Font.Size = 14 With Selection.Font .Color = -16776961 .TintAndShade = 0 End With End Sub Which of the following is true? 2 points The subroutine uses absolute referencing The subroutine uses relative referencing The subroutine uses both absolute and relative referencing at different points

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Mathematics Questions!