K
Kostas Konstantinidis
hi all
I am using a table RT_AM_appointment with two fields
date_appoiment and time_appoiment
What I want to do is to concatenate data like e.g.
01/01/08 11:00, 12:00, 18:00
10/01/08 12:00, 13:30, 14:45, 15:30
..... etc
I tried to use a function written by Dev Ashish on
http://www.mvps.org/access/modules/mdl0008.htm
but when I changed
SELECT ContactTitle,
fConcatFld("Customers","ContactTitle","CustomerID","string",[ContactTitle])
AS CustomersFROM CustomersGROUP BY ContactTitle;
with mine as
SELECT date_appoiment , fConcatFld("Customers","date_appoiment
","time_appointmet","string",[date_appoiment ]) AS CustomersFROM
CustomersGROUP BY date_appoiment
it doesn't work even if it works perfect on northiwind.mdb
anybody could help??
many thank's
I am using a table RT_AM_appointment with two fields
date_appoiment and time_appoiment
What I want to do is to concatenate data like e.g.
01/01/08 11:00, 12:00, 18:00
10/01/08 12:00, 13:30, 14:45, 15:30
..... etc
I tried to use a function written by Dev Ashish on
http://www.mvps.org/access/modules/mdl0008.htm
but when I changed
SELECT ContactTitle,
fConcatFld("Customers","ContactTitle","CustomerID","string",[ContactTitle])
AS CustomersFROM CustomersGROUP BY ContactTitle;
with mine as
SELECT date_appoiment , fConcatFld("Customers","date_appoiment
","time_appointmet","string",[date_appoiment ]) AS CustomersFROM
CustomersGROUP BY date_appoiment
it doesn't work even if it works perfect on northiwind.mdb
anybody could help??
many thank's