I have a standalone table containing 10 rows, 2 fields, ID(Autonumber), and an item. The item is a word. The table is the rowsource of a combo on a form. I thought to save storage space the ID would get stored in the underlying table of a form, but the user would see the word to choose. (ie bound combo column is the ID)
Now I've come unstuck, as when I run a query I get four fields (there are four fields that use the combo selection) showing ID numbers. Any ideas how I sort the problem out?. THe query first fills a listbox for the user to see, and then gets used as a report source.
List rowsource is:
SELECT DISTINCT TXCLIPS.NName AS Name, TXCLIPS.Start AS [Timecode In], TXCLIPS.Duration, TXCLIPS.StarRating, TXCLIPS.Comments, TXMASTERS.Barcode, TXMASTERS.SeriesName, TXMASTERS.EpisodeTitle, TXCLIPS.NName, TXCLIPS.Start, TXMASTERS.Typeofmaterial, TXMASTERS.TapeStandard, TXMASTERS.Audio1, TXMASTERS.Audio2, TXMASTERS.Audio3, TXMASTERS.Audio4, TXMASTERS.Subtitles, TXMASTERS.Stageofcompetition, TXMASTERS.EventDate, TXMASTERS.Venue, TXMASTERS.AdditionalInformation, TXMASTERS.Competition
FROM TXMASTERS INNER JOIN TXCLIPS ON TXMASTERS.ID1 = TXCLIPS.ID1
WHERE (((TXMASTERS.Barcode)=[FORMS]![TapeLogs].[BCODE].[CAPTION]))
ORDER BY TXCLIPS.Start;
Its the Audio1,Audio2,Audio3,Audio4 fields giving me the problem.
The Audio Table is:
Audio ID (Autonumber)
AudioType Text
Wish now I had stored words. Thanks
Now I've come unstuck, as when I run a query I get four fields (there are four fields that use the combo selection) showing ID numbers. Any ideas how I sort the problem out?. THe query first fills a listbox for the user to see, and then gets used as a report source.
List rowsource is:
SELECT DISTINCT TXCLIPS.NName AS Name, TXCLIPS.Start AS [Timecode In], TXCLIPS.Duration, TXCLIPS.StarRating, TXCLIPS.Comments, TXMASTERS.Barcode, TXMASTERS.SeriesName, TXMASTERS.EpisodeTitle, TXCLIPS.NName, TXCLIPS.Start, TXMASTERS.Typeofmaterial, TXMASTERS.TapeStandard, TXMASTERS.Audio1, TXMASTERS.Audio2, TXMASTERS.Audio3, TXMASTERS.Audio4, TXMASTERS.Subtitles, TXMASTERS.Stageofcompetition, TXMASTERS.EventDate, TXMASTERS.Venue, TXMASTERS.AdditionalInformation, TXMASTERS.Competition
FROM TXMASTERS INNER JOIN TXCLIPS ON TXMASTERS.ID1 = TXCLIPS.ID1
WHERE (((TXMASTERS.Barcode)=[FORMS]![TapeLogs].[BCODE].[CAPTION]))
ORDER BY TXCLIPS.Start;
Its the Audio1,Audio2,Audio3,Audio4 fields giving me the problem.
The Audio Table is:
Audio ID (Autonumber)
AudioType Text
Wish now I had stored words. Thanks