Search results

  1. K

    Getting field name via a calculation

    mmm, ok if an admin could shift this over to vba section that would be great. How can i do this with vba?
  2. K

    Getting field name via a calculation

    Hi, I have a cross tab query that has field names 6, 7, 8, 9, 10 representing months and a relevance date field with a date. I have a form and from that form i need to get the value of the last three months from a relevance date field. I.e relevance may be 01/10/2005 so i would need 3 labels...
  3. K

    Importing a decimal number

    no, it was set to decimal, but i have changed it to both of them and it still does not work. Thanks
  4. K

    Importing a decimal number

    mmm, any idea?
  5. K

    Importing a decimal number

    Hi, I have the field set to number -> decial and places to 2. The CSV document reads 96.133542682 So once imported it should look like 96.13 but it doesn't it is just 96. Why is this? when the field is text it is the 96.133542682 as it should be. Thanks k0r54
  6. K

    How to do it???

    i see :) Thanks for you time :) k0r54
  7. K

    How to do it???

    it doesn't seem to work, it doesn't group by the fs-id
  8. K

    dateadd not calculating properly??

    Ok, thank you for all your help. Have just changed the format to american and all is well :) Thanks for every Adam
  9. K

    dateadd not calculating properly??

    Ok, it deffinatly is that. Is it possible for it to be in the table as american
  10. K

    dateadd not calculating properly??

    Ok, I have checked everything and still no luck. I have simplified my query by JUST have the date field and still nothing. I THINK what the problem is.... I have my machine and access set to UK i have input the field as mm/dd/yyyy (American). If i was to use the format([start...
  11. K

    How to do it???

    Hi, I have a table with 3 fields in: - FS-ID Availability Relevance Date Every month i input the availability for the id and put the relevance data as 01/06/05, 01/07/05 etc... I am now doing a query where I want to see all the months for the line address but rather than is being:- field1...
  12. K

    dateadd not calculating properly??

    It is set to UK i have put them in there as mm/dd/yyyy, still no luck. ; says invalid syntax It works fine though when i put in the two dates just doesn't when im doing dateadd :s All your help is appreciated Thanks k0r54
  13. K

    dateadd not calculating properly??

    Thankyou, but it does not work still :(. My date in the table is mm/dd/yyyy so i changed them both around and still nothing. It is in a query and i will be gettin it to popup for the dates i.e [Date:] Thanks k0r54
  14. K

    dateadd not calculating properly??

    Hi, When i use this between #01/07/2005# and #01/09/2005# It all works ok and pull outs what i need. But when i do between #01/07/2005# and DateAdd("m",3,#01/07/2005#) I have also tried it without the # and with 2 instead of 3. No luck :( Any ideas? Thanks k0r54
  15. K

    naming a field in a query

    Hi, I need to name my field in my select query i.e : - name: [... but instead of it just being text, i need it to calculate its name by month i.e Month([Starting date:])+1 On my query i ask the user to input a starting date and i then work out information based on that. How can i name the a...
  16. K

    Creating a macro to export 2 select querys to a single excell book

    Hi, How can I export 2 seperate select querys into a single excell workbook. I have tried transferspreadsheet but it just does one (apart from i cant get it to pick up the query, just tables). I need it to put one query into a 1 and and the 2nd query into another sheet preferably being able to...
  17. K

    Finding the highest of a count query

    well i didn't know about that lol :) Thanks very much :)
  18. K

    Finding the highest of a count query

    Yeah, i also tried that, but unlike MySQL you can't put a LIMIT to just 1 record. Otherwise i could desc and just take the first record.
  19. K

    Finding the highest of a count query

    I have tried that and dmax but it still wont work, well dmax works but it needs to be in a different query, which i REALLY want to avoid.
  20. K

    Finding the highest of a count query

    Hi, I am using this sql query : - SELECT Monthly_below_report.Device FROM Monthly_below_report GROUP BY Monthly_below_report.Device, Monthly_below_report.[FS-ID] HAVING (((Monthly_below_report.[FS-ID])=780)); The problem is this currently pulls out 5 records (all devices found and the amount...
Back
Top Bottom