Search results

  1. Matt Greatorex

    Shootings in US schools

    Don't get this bit? :confused:
  2. Matt Greatorex

    How to count table non blank cells in columns?

    I think this is about right. =DCount("[CLASSIFICATION]","table name","[CLASSIFICATION] = Preliminary' And (Not IsNull([PROD1]) Or Not IsNull([PROD2]) Or Not IsNull([PROD3])")
  3. Matt Greatorex

    Date related Query- help please!

    What is the table structure? I'm trying to picture how you're storing the callback info. I would guess a query that asks for all names where there is a callback date and where the callback date isn't in the list of all calls made for that same person?
  4. Matt Greatorex

    Shootings in US schools

    That way of thinking is probably what excludes you from becoming one. ;)
  5. Matt Greatorex

    The One True Religion

    I remember an episode of a sitcom some years ago, where the main characters were talking and you could hear the TV in the background. It was set in the future and the guy on screen was saying someting along the lines of "...the discovery of a new page for the Bible has caused controversy...
  6. Matt Greatorex

    The One True Religion

    Thanks for that. If you want to name a couple, I may give them a look. The only time I really get to just sit and read is on the train, but I find I can get through a book a week that way. I'm alternating between fiction/easy reading and titles I may learn something from (keeps my brain from...
  7. Matt Greatorex

    How to count table non blank cells in columns?

    If you don't want a total (i.e. all cell values added together), you could use DCount, rather than DSum e.g. =DCount("CLASSIFICATION]","table name","([CLASSIFICATION]='Preliminary' And ([PROD1]='?' Or [PROD2]='?' Or [PROD3]='?'")) This counts the number of Classification values for all...
  8. Matt Greatorex

    Shootings in US schools

    Yes, liked that one. :D
  9. Matt Greatorex

    The One True Religion

    Formal study? Very little, to be honest. Casual reading? A bit, on and off. What articles/books etc. I have read suggest that non-believers have one set of ideas about it's origins and accuracy, religious people have an entirely different set. Since I fall into the former category, I've probably...
  10. Matt Greatorex

    Check if duplicate afterupdate

    Try putting quotes around [Barcode].
  11. Matt Greatorex

    Printers

    Thanks, both (it's much more reassuring to hear about personal use than just reading the product reviews). I'll look into all three and get something sorted out.
  12. Matt Greatorex

    Well Well Well

    Given that the majority of the posters in the Watercooler tend to be - from what I've seen - American, Canadian, British and Australian, Americans would be perfectly entitled to say it as would the other three. :confused:
  13. Matt Greatorex

    Check if duplicate afterupdate

    Do you mean after or before update? I only ask as it's safer to stop the record being inserted than to delete it afterwards. Either way, you can use DCount() for that record in the relevant table. If it returns more than zero, you've got a duplicate.
  14. Matt Greatorex

    The One True Religion

    This part: Do you mean the things you have in your life (e.g. health, possessions, luck) could be viewed as hallucinations, the person/thing that provided them (e.g. God) could be viewed as an hallucination, or the means by which they were provided (e.g. a dream) could be viewed as hallucinatory?
  15. Matt Greatorex

    The One True Religion

    So, have you always explained it as God's actions or did that come later in life? Isn't there at least one 'branch' (for want of a better word) of Christianity that believes what happens to you is pre-ordained, so it makes no difference if you're good or bad? Or does that pre-ordination just...
  16. Matt Greatorex

    The One True Religion

    Well, that pretty much ends the debate in a disappointing way. Pity. Nobody expects anyone to be converted one way or the other but it was interesting hearing the reasoning behind people's thinking. "I know X to be true but I have no desire to convince anyone else of that fact. My knowledge is...
  17. Matt Greatorex

    repartial text

    You can use the Replace() function to replace any occurrence with the full "Elizabeth". e.g. Loop through table For each record, Replace(name,"Elizh","Elizabeth") End loop If Elizh is anywhere, it gets replaced. f it doesn't exist in a record, nothing happens.
  18. Matt Greatorex

    Too few parameters. 2 required.

    Are the fields Period and Year strings or dates? If the former, you need to put the criteria in single quotations, if the latter you need to use hash (or pound) signs. e.g. strQuery = "SELECT Workfile.Period, Workfile.Year FROM Workfile " & _ "GROUP BY Workfile.Period, Workfile.Year " & _...
Back
Top Bottom