Here is the prompted Question:
Write a sub that does the following: 1) it tasks the user to input a word; 2) it enters each character of the word in backwards order in consecutive cells in row 5, starting with cell "B5". hint: use a for loop.
I cant really figure out how to start, here is what I have but i know it is completely wrong:
Public Sub Question2()
Dim Word As String
Dim Counter As Integer
Word = InputBox("Please Enter a word")
For Counter = 1 To Len(Word)
Range("B5").EntireRow.Value = StrReverse(Word)
Next
End Sub