I currently am looking at the evaluation version of Actinic Business / Audio store to use for setting up a website to sell cds. My database is set up in Access with various tables for main cd details, tracks, categories etc. I can see how to link in my main catalogue by using the external link but as the categories and tracks for each cd are stored in separate files to the main product details I can not see how to link in the tracks to fit it all together. Can anyone give me any advice here?
Announcement
Collapse
No announcement yet.
Will Actinic work for me?
Collapse
X
-
One way of doing what you require is to write a query in Access that joins several fields (your track lists) into one field with appropriate formatting along with all the other actinic data to create a new table then use that table to link to Actinic.
In access, the query syntax to select data and put it into another table is like this:
SELECT *
FROM mySourceTable
INTO myTargetTable
WHERE 1;
Using field concatenation in the SELECT part you could do something like
SELECT "!!<" + Track1 + "<br>" + Track2 + "<br>" + Track3 + ">!!" AS TrackList (or probably [Full Description])
Hope this makes some kind of senseMatt
Actinic User since v.3
Custom Actinic Site Specialist:
<a href="http://www.glowsticksdirect.co.uk/">GlowSticksDirect.co.uk</a>
<a href="http://www.digishopdirect.co.uk/">DigiShopDirect.co.uk</a>
<a href="http://www.calibreshopping.co.uk/">CalibreShopping.co.uk</a>
-
Many thanks for pointing me on my way. Think I have just about solved it. Found a great example on
http://www.rogersaccesslibrary.com/O...p#Hookom,Duane
Comment
-
Undefined function
HELP
almost there but getting an error message
Undefined function 'Concatenate' in expression
what am I doing wrong?
SELECT catalog.catalog_id, catalog.catalog_id, Concatenate("SELECT track_name FROM tblTracks WHERE catalog_id =" & [catalog_id]) AS track_name
FROM [catalog];
Comment
-
Did you copy the contents of the basConcatenate in the Modules section over to your database. That modules file contains the Concatenate function used in the example.Matt
Actinic User since v.3
Custom Actinic Site Specialist:
<a href="http://www.glowsticksdirect.co.uk/">GlowSticksDirect.co.uk</a>
<a href="http://www.digishopdirect.co.uk/">DigiShopDirect.co.uk</a>
<a href="http://www.calibreshopping.co.uk/">CalibreShopping.co.uk</a>
Comment
-
You just need an update query something like this
Code:UPDATE Table1 SET Table1.[FieldName] = [Table1]![Fieldname]+' '+[Table2]![Fieldname]; on [Table1].[FieldName] = [Table2].[FieldName]
Bill
www.egyptianwonders.co.uk…
Text directoryWorldwide Actinic(TM) shops
BC Ness Solutions Support services, custom software
Registered Microsoft™ Partner (ISV)
VoIP UK: 0131 208 0605
Located: Alexandria, EGYPT
Comment
Comment