Search results

  1. E

    create a new row for each table column in query

    Pat, You're awesome! Transposing in excell worked (with a few iterations due to the size of the table). Thank you!
  2. E

    create a new row for each table column in query

    Is there a way to normalize the tables and keep the data intact? The point here is to normalize the tables and get the data into a normalized form. If there is a good way to do this I'd love to hear it. Looking over some threads about normalizing data, it looks as if this is non-trivial and can...
  3. E

    create a new row for each table column in query

    Just giving this a little bump. I'm very much hoping that there is a more clever way to do this.
  4. E

    create a new row for each table column in query

    Thanks Keith. I was hoping to avoid this since there are 60+ materials but, looks like this is the only way.
  5. E

    create a new row for each table column in query

    Ok, I can't get meloncolly's suggestion to work. Possibly because the analysis results are cells in the table columns (each column is a different material) and I don't know how to just return the name of the column in one cell and the result of the column in another all in the same row. Can...
  6. E

    create a new row for each table column in query

    Neil, Thanks for the comment. I know this isn't normalized. The purpose of this query is to get the data into a normalized form and so it can be loaded into a normalized system. Meloncolly, I'm not sure I understand what you're suggesting. Are you saying that I should create a union between...
  7. E

    create a new row for each table column in query

    I have a table which stores multiple materials in different columns, and the analysis results for each material in the associated cell. I need to create a query which will display a new row for each material and result with all the appropriate associations (location, date, time, etc.) Is there...
  8. E

    Overide tab-through Autosaving?

    Thanks very much! Found just what I needed on this thread http://www.access-programmers.co.uk/forums/showthread.php?t=74847&highlight=BeforeUpdate+event+save . Looks like you've done quite a bit of work on this. Much appreciated.
  9. E

    Overide tab-through Autosaving?

    I have a form with several sections which corrrespond with different tables. Currently, when a user clicks or tab's through to the next section, the previous section is automatically saved into the corresponding table. Is there any way to over-ride this automatic saving and have the form be...
  10. E

    count number of characters in numeric field

    The database stores a [results] numeric field and an associated [sigfigs] numeric field. I need to combine the two in a query like so: If number of characters in result < value of sigfig, find n= [sigfig] - [number of characters in result], CStr[result] and add n number of 0's to end of result...
  11. E

    count number of characters in numeric field

    Matt, Thanks for the response. This works but, it also counts the decimal point. Is there any way to either exclude the decimal point or subtract 1 if there is a decimal present?
  12. E

    count number of characters in numeric field

    Does anyone know the syntax to count the number of characters in a numeric field? If not, how about counting the number of characters in a string?
  13. E

    Setting up a WIKI - Opinions / Recommendations

    Personally, I'm not a fan of mediawiki (the one used by the wikipedia). The biggest advantage to MediaWiki is that the syntax is widely recoginized (wiki Syntax is not standard and varies for most wiki engines) as is the format/overall user experience. However, if you need to modify anything in...
  14. E

    Working on design tutorial

    I also searched both for an access wiki and a database design wiki and found neither. Although, there are plenty of brief notes in some wiki's or individual blogs, I haven't found anything dedicated or very extensive. So, unless I hear otherwise, or someone points me to a good wiki for this (I'd...
  15. E

    Working on design tutorial

    This thread looks like it could benefit from the wiki format rather than a forum. As I've benefited much from this thread, I'd be happy to put up a wiki for it so the tutorial can be edited and discussed collaboratively as needed (I'll even splurge on the $15 to register a domain). Let me know...
  16. E

    Syntax for IIF statement with checkbox

    Excellent!! Does just what it should. Many Thanks.
  17. E

    Syntax for IIF statement with checkbox

    Ahh, sorry. It's in a Control Source.
  18. E

    Syntax for IIF statement with checkbox

    The Formula is in a report which is generated from a cross-tab query. In the report I currently have all of the fields I need but, want to check if there exists a grab or integrated record without displaying the record, just display some mark that there is one.
  19. E

    Syntax for IIF statement with checkbox

    Thanks for the response Paul. That didn't generate any Syntax errors. The report ran mostly as expected but, all of the check boxes are empty, even the ones associated with [SampleTypeCode]="Grab" Or [SampleTypeCode]="Integrated" (I kept this field displayed on the report for now). Not sure...
  20. E

    Syntax for IIF statement with checkbox

    Thanks for the response Paul. That didn't generate any Syntax errors. The report ran mostly as expected but, all of the check boxes are empty, even the ones associated with [SampleTypeCode]="Grab" Or [SampleTypeCode]="Integrated" (I kept this field displayed on the report for now). Not sure...
Top Bottom