Recent content by Robo0502

  1. R

    related comments from several lines in one cell

    thanks pbaldy. that s perfect
  2. R

    related comments from several lines in one cell

    Hi guys, need your help. It would be best if I show you example what I want to achieve. tblComment: PO Material Comment 123 Keyboard Not available 123 Keyboard Available from 23.2. 245 Mouse quality issue 245 Mouse Available Result...
  3. R

    Add GMT time to a field

    I found this on another forum. Works for me. The result you will get with: msgbox ConvertLocalToGMT(Now()) The working code: Option Explicit Private Type SYSTEMTIME wYear As Integer wMonth As Integer wDayOfWeek As Integer wDay As Integer wHour As Integer wMinute As...
  4. R

    Add GMT time to a field

    Hi guys, I want to add GMT time to a field. Could you pls help me how to do that? Thank you
  5. R

    how to use one date from aggregate query

    Hi guys, wonder if you could help me. Probably easy task. I have a aggregate qry which gives me one certain date from a source table with dates. Then I have a table with orders which contains order date. I think there is no way I can connect order table and aggregate qry. In a query from...
  6. R

    Count qty of almost identical lines

    I think I got it. At first using aggregate query I create a so called "aggregate" table where I can store sum of qty. Then I delete duplicates using method described here ( http://www.satorisoftware.com/support-article/eliminating-duplicate-records-in-microsoft-access/ ) . I chose alternate one...
  7. R

    Count qty of almost identical lines

    new table with actual data will be imported every day, thus every day needs to be done this aggregate query.
  8. R

    Count qty of almost identical lines

    I need to replace them though. Otherwise the table is useless. any idea?
  9. R

    Count qty of almost identical lines

    thanks guys. Now I remember I already used aggregate query before, but after a year I am back in Access and I forgot most of the stuff. And what would be the best way to replace original lines in source table with these aggregate ones?
  10. R

    Count qty of almost identical lines

    Hi guys, could you pls help with my issue? It is better to describe it on example. Lets say I have these rows: ordernumber / unit / qty 345 / laptop / 3 345 / laptop / 5 345 / PC / 7 345 /...
  11. R

    sort

    you are right. even in the report table is the same problem. I have found out that problem is when a column name consists 2 or more words and one of them is "Description"...sounds weird but after I renamed the column everything works fine. thank you
  12. R

    sort

    Hi guys I have a problem with sorting the data on CF_main form. Sorting according Issue, PSD vs RSD or order qty is working perfectly. The problem is with PN Desc. For some reason it is working only when I sort the data in the beginning alphabetically and then it is not cooperating. dont know...
  13. R

    duplicate records, show only the last one

    Thank you guys. You were right. I solved it using Group by query and sub-query.
  14. R

    duplicate records, show only the last one

    Hi guys. I have a table and there are so called duplicate records (not entirely duplicate because there is field with the date of creation and other differences in a few fields, but from my point of view they are duplicates.). I d like to make a query which shows me only the newest record in...
  15. R

    pivot chart changing color

    That s perfect, man. I knew there had to be a way using VBA. Thank you very much :)
Back
Top Bottom