Recent content by seizure

  1. S

    Multiple row crosstab report

    Anyone? :(
  2. S

    Multiple row crosstab report

    Hi guys, I'm trying to create a crosstab report. So far I've created the actual report with no Record Souce with a page header containing text boxes named "head1", "head2" etc through to "head15". In the detail section I have "col1" to "col15" and in the page footer I have "tot1" to "tot15"...
  3. S

    Index in an SQL make table query

    This is what I needed: ALTER TABLE tblSearchResults ADD COLUMN ID AUTOINCREMENT I had to take the blank column called "ID" out of the first SQL string, but that allowed me to run the code above as a second SQL string, thus giving me a physical ID field. Cheers
  4. S

    Index in an SQL make table query

    Having done a bit more digging..... CREATE INDEX doesn't actually add a physical index, does it. That's OK, but how would you then query the table for the records based on the index number that has just been created? Cheers
  5. S

    Index in an SQL make table query

    Hi, I've given your suggestion a go. Here's my code: strSQL = "SELECT tblLog.Date, tblLog.Comments, tblLog.Client, tblLog.[Number of Accounts], tblLog.[User ID], tblLog.[Value of Accounts], tblAction.[Action Description], tblLog.[File Location], tblLog.[Creditor ID], '' AS ID INTO...
  6. S

    Index in an SQL make table query

    Fantastic! Thanks for that. I'll give it a go. :)
  7. S

    Index in an SQL make table query

    Hi, Was wondering, is it possible to add an index field into a make table query? And if so, how do you do it in SQL? Thanks
Back
Top Bottom