Recent content by murgatroyd

  1. M

    Range of ASCII values in criteria

    That does exactly what I need thanks, jdraw.
  2. M

    Range of ASCII values in criteria

    What is the syntax using the keyword BETWEEN for finding characters with ASCII values in the range 192-255?
  3. M

    Range of ASCII values in criteria

    Thanks for your suggestions. Why is it that this works ... Like "*[X-Z*]" ... but this doesn't? Like "*[À-ÿ]*" If this works for a single character ... Like "*[" & Chr(192) & "]*" why doesn't this work for a range of characters? Like "*[" & Chr(192) & "-" & Chr(255) & "*]"
  4. M

    Range of ASCII values in criteria

    Thanks for your reply. Just directly typing in characters works for "Basic Latin" (English) characters but not for "Latin-1 Supplement" (other European) characters. (a) To search for records where the field contains a single "Basic Latin" (English) letter, say "X", either of these works: Like...
  5. M

    Range of ASCII values in criteria

    I am trying to create a query that will find records where a "CustomerName" field contains any invalid characters. Valid characters are (1) space, (2) hyphen, (3) apostrophe, (4) "Basic Latin" (English) letters (Aa-Zz), and (5) "Latin-1 Supplement" (other European) letters (À-ÿ = extended ASCII...
  6. M

    Conditional formatting issue

    I just tried adding back the extra tables to the query to get the data for the conditional formatting, and there was no noticeable difference in performance between this and DLookUp, but with the recordset type set as "Dynaset (Inconsistent Updates)", the uneditable fields became editable. I...
  7. M

    Conditional formatting issue

    Thanks for your further reply. Using DLookUp for the conditional formatting was arnelgp's suggestion in another thread, because getting the data needed for the conditional formatting from the query required some table joins that made some fields on the form uneditable. DLookUp is a tad...
  8. M

    Conditional formatting issue

    Thanks for your reply. I used fictitious field names to make it easier to follow; looks like I should have picked different ones! Is there a technical reason for a conditional formatting expression like this to work in a form but not in a report? Expression is [OrderType]=2 And [Size]>0...
  9. M

    Conditional formatting issue

    Thanks for your reply. I will try your suggestion. Is there a technical reason that my conditional formatting expression works in my form but not in my report?
  10. M

    Conditional formatting issue

    Thanks for your reply. Yes, DLookUp returns the first match it finds. In this recordset, this DLookUp term will find a unique match for each record, so that is not a factor. The issue is that I have a form and report that both have the same conditional formatting expression; however, it...
  11. M

    Conditional formatting issue

    I have a form and a report in Access 2010 that both do essentially the same thing: they both use the same query as a data source, and they both list the same fields. I have added conditional formatting to several of the fields in both the form and the report, and this works in both the form...
  12. M

    Editable fields with multiple queries

    Thanks for your reply. I haven't used DLookUp before, but I tried this and it worked fine.
  13. M

    Editable fields with multiple queries

    I have a form in Access 2010 where the data source is a single query (Query1). The form includes a field (Table1_Field1) that the user can edit (field properties has Enabled = Y, Locked = N, and form properties has Allow Edits = Y), and this works OK. To enable some conditional formatting on a...
  14. M

    Ambiguous joins

    OK thanks, I've got it now.
  15. M

    Ambiguous joins

    Thanks for your reply; however, I'm not very familiar with SQL code. Is there a way to do this in the Access query grid? Alternatively, as the single record in the Parameters table only needs to be read once to obtain a couple of fields from it to use as constants in a couple of conditional...
Top Bottom