Recent content by Ceebee86

  1. C

    Serialize Function Problem

    Hi, Isladogs was kind enough to point me to her updated code when I was having problems, yet I still am having issues and hoping its quick to fix. The code works in my query if I don't place a where clause, if I remove it, it works fine. I get error 3061. Too few parameters, expected 1. I...
  2. C

    How do I used Stephen Lebans / Peter Schoeders serialize function

    Hi, I'm trying to get this to work in access 2016, and it goes straight to error. Run time error 91: Object variable or With block variable not set. I've tried with Option Compare Database, and Option Explicit, and get same error. I think it may be this line.. Serialize =...
  3. C

    RegEx & Code128 barcodes & GS1

    That was my problem, I was trying to do a one regex fits all possible combinations with GS1 identifiers....but its not that simple, and Gasman's simple approach has helped me out immensely, had tunnel vision. :(
  4. C

    RegEx & Code128 barcodes & GS1

    Thank you! This method works well for me :) I tried this on Sunday and it worked a charm. :) Thank you for digging me out of a rut!
  5. C

    Multiple Criteria Search Filter on Query

    Thanks, I'll give this a go tonight. :)
  6. C

    RegEx & Code128 barcodes & GS1

    Hi, I'm quite new to access (4-5 months) and RegEx. I've searched the internet so much over past few days, tested with regex101.com and I can't get it right. I have a regex module which lets me use it in access as a function. I have a few suppliers, and their bar codes are all different...
  7. C

    Multiple Criteria Search Filter on Query

    When I use criteria 01/11/2019 - 13/11/2019 StrWhere = ([SCANINTIME] >= #11/01/2019#) AND ([SCANINTIME] <= #11/13/2019#) I get results. If I do 30/10/2019 - 06/11/2019 StrWhere = ([SCANINTIME] >= #11/01/2019#) AND ([SCANINTIME] <= #11/13/2019#) I do not get any results, blank page...
  8. C

    Multiple Criteria Search Filter on Query

    Forgot to mention, if I search 30/10/2019 - 01/11/2019. I get no results. If I search within the months, and not across them, I get results. Frustrating. :(
  9. C

    Multiple Criteria Search Filter on Query

    Hi Access world, I am using http://allenbrowne.com/ser-62.html tutorial to make a Filter for a form that's record source is a query. I have used the tutorial very well, up until the point I tried to do a Date search between two dates. Code: Private Sub cmdFilter_Click() 'Purpose: Build up...
  10. C

    Query - Running slow - Advice needed

    Thanks for the replies. I do use quite a few functions in my select queries, I'll see if I can cut a few of these out. I imagine the data tables they are based on will get quite big in the future, the tables have about 5-10 columns in each table on average with the last query having around 30...
  11. C

    Query - Running slow - Advice needed

    Hi Access world, I have a complicated query (well it is to me! :) ) that I have written with some help along the way. I want to stream line it, and I am quite new to access, been using it for about 3 months or so. It's purpose is to provide an overview of information in continuous forms, that...
  12. C

    Method question - Labels

    Hey guys, Using CJ's and Arnel's suggestions. Have two tables for the barcodes, tblAGLGRN & tblAGLSSCC (populated with admCount values) Thanks for the idea's, I think I have got to a place I'm happy with now. :) So... route I found myself on was... Main form from a table for Barcode1 (...
  13. C

    Method question - Labels

    Hi CJ, Sorry, I thought I was being clear, and having entered the access world, I have found its hard to describe things...perfectly. :( run 1 MZOUKBTY000001..416001 MZOUKBTY000001..416002 MZOUKBTY000001..416003 MZOUKBTY000001..416004 MZOUKBTY000001..416005 run 2 - same customer different...
  14. C

    Method question - Labels

    Ok...so...I have got this to half work I think. Very cool code. I made the unbound form, and referenced the fields by name in the SQL you provided, and it came out with the below (pictures attached) Put in 20, it gave me 21. Edit: added +1 to the code. :) I need barcode1 to stay as...
  15. C

    Method question - Labels

    Thank you for the help. I've looked at this previously, and have it saved somewhere, if everything else fails, I'll go back to it, as it was quite complex for me to understand, and didn't work as it was trying to access the creators file server I think...
Top Bottom