A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
... if I type X in cell A1, I want Q to appear in cell A3 ... every time I type X in any cell --- Q should appear two cells to the right, on the same row.
Is it two cells to the right or two cells down? The description seems to contradict itself. I'll assume that the former is correct.
Right-click the worksheet's name tab and select View Code. When teh VBE opens, paste the following into the pane titled something like Book1 - Sheet1 (Code).
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
If Target = "X" Then Target.Offset(0, 2) = "Q"
Application.EnableEvents = True
End Sub
Press Alt+Q when done to return to your worksheet. The workbook will have to be saved as a macro-enabled workbook.
I'm pretty sure that there is more to what you want than just this, but you'll have to provide a little more detail.