Hi,
If I understand you right, you want something like this
SELECT LName, FName, IIf([Parameter:]="C1",[C1],IIf([Parameter:]="C2",[C2],[C3])) as Course FROM YourQuery;
This query will display always 3 columns, in the Course column's content will depend on the value you enter into the...