JonWolgamuth
Technical User
Not sure who wants to help me tackle this one, but I'll start out with the entirely too huge SQL Statement.
SELECT TransactionsTBL.TransactionID, OptionGroupTBL.OptionGroupID, OptionGroupTBL.OptionGroupName FROM OptionGroupTBL INNER JOIN TransactionsTBL ON OptionGroupTBL.OptionGroupName = TransactionsTBL.TransactionCategory WHERE (((OptionGroupTBL.OptionGroupID)=[Forms]![WorkFRM]![TransactionCategories].[Value]));
If I understand things correctly (questionable), I should be looking to get a result based upon the first section after SELECT statement (TransactionsTBL.TransactionID). Problem is that TransactionsTBL.TransactionID is a list of actual transactions, not a list of numbers. The results I'm getting from this is 1s, 2s, 3s, and 4s (Apparently the value of the Option group?) I'm looking to get, as I said before, the Transaction ID (actualy names of the transactions).
Anyone see what I'm doing wrong? I hope my description was clear...
SELECT TransactionsTBL.TransactionID, OptionGroupTBL.OptionGroupID, OptionGroupTBL.OptionGroupName FROM OptionGroupTBL INNER JOIN TransactionsTBL ON OptionGroupTBL.OptionGroupName = TransactionsTBL.TransactionCategory WHERE (((OptionGroupTBL.OptionGroupID)=[Forms]![WorkFRM]![TransactionCategories].[Value]));
If I understand things correctly (questionable), I should be looking to get a result based upon the first section after SELECT statement (TransactionsTBL.TransactionID). Problem is that TransactionsTBL.TransactionID is a list of actual transactions, not a list of numbers. The results I'm getting from this is 1s, 2s, 3s, and 4s (Apparently the value of the Option group?) I'm looking to get, as I said before, the Transaction ID (actualy names of the transactions).
Anyone see what I'm doing wrong? I hope my description was clear...