Databound Checkboxlist question

  • Thread starter Thread starter tjonsek
  • Start date Start date
T

tjonsek

Is it possible to concat to fields from a dataset together to create
the checkboxlist labels?

I'd like to create a form with a checkboxlist with the text of the
label for each item coming from a combination of date,description and
location fields in a database
 
Simply create your select query that pulls the data out of the database like
the example below

Select DateField + " " + DescriptionField + " " + LocationField AS
ConcatField.

The Concat field will then contain the other fields seperated by a space.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top