Search results

  1. S

    Format help

    Field Ya I'm sure, it's actually a binary field that doesn't change.
  2. S

    Format help

    I need to make 1 of my textboxes have currency format. I've changed that property and I get it on 1 box I changed and not the other 1 I changed. I would appreciate any help! Please and thank you!
  3. S

    Sum formula help please & thank you

    Hello. Sounds like you're gonna have to write some VB code. Try something like: Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) If [Companies] between A and I then text81=sum[companies] If [Companies] between j and r then text82=sum[companies] ect... End Sub where...
  4. S

    Line function in reports

    That's strange there is no order function like on MS Word. However, if you draw the colored box first and then add the other textboxes they will be on top of the colored box. I tried cut and it pasted them in front of the colored box. Then make all your text fields borderstyle = transparent.
  5. S

    Columns in a report

    Got it! Needed to change the column size in page setup. And between column width.
  6. S

    Columns in a report

    Hmmm no ideas? or can't this be done?
  7. S

    Columns in a report

    I'm trying to use a generic page header on all my reports. The problem is I need to use 2 columns on 1 report. I can't seem to get a full size page header to work with 2 columns. Any suggestions? Thanks, Stephanie
  8. S

    Concatenate in a textbox

    That did it! I think the textbox name was conflicting with the field name! Thanks so much!!!!
  9. S

    Concatenate in a textbox

    I'm trying to put both lastname and first name in a text box. This it the code I'm using in the control source for the textbox =[Last] & ", " & [First] I keep getting #Error when I run the report! Any idears? Thanks, Stephanie
Back
Top Bottom