Search results

  1. J

    VBA code to manipulate grouping on Reports

    I figured it out. This is what I did to achieve what I wanted to do: 1. I went to the [ACMT_Field] field and entered this expression, =Dlookup("[ACMT]", "Tablename", "Left([ACMT], 3)='The'") 2. I did this and my analysis comment "The actual concentration is..." pops up in my [ACMT_Field].
  2. J

    VBA code to manipulate grouping on Reports

    Gemma... so I should go to Reportheader-->Rightclick-->sorting/grouping--> then create a group footer?
  3. J

    Manipulating grouping with code or formula.

    I have a field [ACMT] on my report that holds analysis comments; it [ACMT] resides in the Footer section of my report. The problem is my analysis comments do not show on my report. I learned that the Footer section only displays values in the last record of the table (the record source of the...
  4. J

    VBA code to manipulate grouping on Reports

    I have a field [ACMT] on my report that holds analysis comments; it [ACMT] resides in the Footer section of my report. The problem is my analysis comments do not show on my report. I learned that the Footer section only displays values in the last record of the table (the record source of the...
  5. J

    VBA code to account for greater/less than>,< signs for my Report.

    Hey Wayne, Thanks for your help. I have noted your code.
  6. J

    VBA code to account for greater/less than>,< signs for my Report.

    Ok.. I understand. Thanks again Chergh.
  7. J

    VBA code to account for greater/less than>,< signs for my Report.

    Hey Chergh... How can I include the > greater than sign in that code. (Your code works perfectly when handling the < less than sign; however sometimes we have results like "> 5" etc.. How can I modify the code to handle both signs in the code?
  8. J

    VBA code to account for greater/less than>,< signs for my Report.

    Chergh That Did It! Thanks A Lot!
  9. J

    VBA code to account for greater/less than>,< signs for my Report.

    Chergh, I've tried your code. I get this error message: Compile error: Sub or function not defined, and it's getting hung up on the "clong" part of the code{---Format(Round(clong(strvariable), 1), "0.0")---}. Do I need to go back and define a function in the beginnig of my code. I am a novice...
  10. J

    VBA code to account for greater/less than>,< signs for my Report.

    Chergh, this is what I want it to do. I'm about to try your code now.
  11. J

    VBA code to account for greater/less than>,< signs for my Report.

    Wayne, thanks for your reply. I see your code, but I need for it to retain the <> signs if they are there. Meaning to display "< 1" or "> 5".
  12. J

    VBA code to account for greater/less than>,< signs for my Report.

    Yes. Sometimes there are values such as "<1" or ">5". And when this is the case, I want Access to keep the sign. Display "<1" or ">5".
  13. J

    VBA code to account for greater/less than>,< signs for my Report.

    Hello, I have code that is doing what I want it to do on my Report except when it comes across the occasional >,< signs.{For "Ammonia", when there is a number less than 1, put "BDL", for all other digits round to one decimal place(that's fine!)}. {For "CBOD", when there is a number less than 1...
  14. J

    On Report: Hide duplicates

    RuralGuy It worked. Thanks a lot!
  15. J

    On Report: Hide duplicates

    Thanks RuralGuy! I'm about to try this code now. I'll let you know how it goes.
  16. J

    On Report: Hide duplicates

    Yes... exactly. It is *always* "Composite". And yes it's playing with the visibility of the control.
  17. J

    On Report: Hide duplicates

    Thanks for responding RuralGuy I see your point (now that I think about it). Trying to fix this by placing the "Composite" value at a specific place in the record may not be a great idea since the data may change, or I may end up with different numbers of records every time. Basically, what I...
  18. J

    On Report: Hide duplicates

    I have my Report in Tabular Format. I have a field [US018]that contains the word "Composite". The report looks crowded with the word "Composite" being displayed in each record in that field throughout the report. So, I went to the property of that field and set Hide Duplicate to YES. Of course...
Back
Top Bottom