Search results

  1. K

    Query Count

    yes, 893 is the correct count but it repeats with 893 for 5000 records? How can I just get the 893 returned, one record.
  2. K

    Query Count

    So, this seems to work: test: DCount("*","Query2","Field1<5") but it gives number of records that meet the <5 (893) but for 5000 records if repeats 893? How can I just see the count?
  3. K

    Query Count

    Will give it a try
  4. K

    Query Count

    That's what I was thinking. What would it look like looking for records <5 using DCount()?
  5. K

    Query Count

    Not sure where to start.
  6. K

    Query Count

    I have a query that has one field (number1) and I would like to retrieve the records that are less than 5. The table has about 5000 records. So, if say 500 records meet that criteria, I want just the count or how many records. Thanks.
  7. K

    Open a report from a form

    Yes, thanks.
  8. K

    Open a report from a form

    Wow, that's impressive. Thanks!
  9. K

    Open a report from a form

    Any way to be prompted for the ReportName?
  10. K

    Open a report from a form

    I have a form (test) and I would like to open a report (records) based on the record I'm in on my form. I would like to use a command button on my form. VBA please. Thanks.
  11. K

    Decimal

    That worked. Thanks!!
  12. K

    Decimal

    Doesn't work? Because of the text at the beginning?
  13. K

    Decimal

    I have the following in an unbound field, how can I force this to be 2 decimal places? ="+/- " & [Number1]
  14. K

    Bold and Color

    Got it. Thanks!
  15. K

    Bold and Color

    I think the conditional formatting might actually work better.
  16. K

    Bold and Color

    Yes but I have it on a command button that is doing some calculations too.
  17. K

    Bold and Color

    Does not work for me? If [sample] < 400 Or [sample] > 500 Then [sample].ForeColor = 858083 And [sample].FontWeight = 800 The font just remains black and not bold when I put them together.
  18. K

    Bold and Color

    Ok, changed it to FontWeight but I can't seem to get it to be bold and color. Only works, one or the other. [sample].FontWeight =700 (works) [sample].ForeColor = vbBlue (works) But not together?
  19. K

    Bold and Color

    How do I make a font both bold and a color? [sample].FontBold = True And [sample].ForeColor = vbBlue
  20. K

    Less than or Equal

    What is the best way to state this? If [sample] < 400 Or [sample] > 500 Then sample.ForeColor = vbRed Else sample.ForeColor = vbGreen
Back
Top Bottom