Yeah you could populate an array with all letters in the alphabet.
You could then determine the pos of the cur letter in the array with code something like the following:
Option Explicit
Dim testArr As Variant
Public Sub addtoLetter(letter, inc)
Dim i
For i = 1 To UBound(testArr)
If testArr(i) = letter Then MsgBox testArr(i + inc)
Next
End Sub
Private Sub Command1_Click()
Call addtoLetter("d", 4)
End Sub
Private Sub Form_Load()
testArr = Array("a", "b", "c", "d", "e", "f", "g", "h", "i", "etc"

End Sub
obviously you would want to dim the array more fully etc but create a test form with a button called command1 on it paste this code - away you go.