Search results

  1. C

    Problem, why is my query giving me data that it shouldn't

    Sorry, here's the database
  2. C

    Problem, why is my query giving me data that it shouldn't

    Hi, Having a problem within my database. I have a form "Costing Sheet RL Form" Within this form I enter the data I want for a report. The first button "Run Macro" runs a macro that runs a qry " Delete record from Costing Sht Hdr tbl qry" which deletes the record from the last request. Then...
  3. C

    getting #error on my report

    Not sure the database up loaded, sending again. Thanks!
  4. C

    getting #error on my report

    Here's the database, has the report and query in it. The name of the sub report is Labour PCS sub report. And then the main report is Costing CS Report. Thanks!
  5. C

    getting #error on my report

    Yes. So you think it's something other than my expression? I do know that for this sub report there is no data. But there is data for the other sub reports. And then at the end I have a total and it's not printing, so I have to be able to allow for nulls or zeros.
  6. C

    getting #error on my report

    Yes. What I have in my sub report now is the expression above. Thanks!
  7. C

    getting #error on my report

    I'm getting #error on my report. This reports has 8 sub reports. And of course the sub reports are from different tables. How do I handle results that are 0? For example: Here's my calculation IIf(Sum([cost/lf]) > 0, Sum([cost/lf]),0) and this was done in expression builder. What am I...
  8. C

    How to make a new table from fields entered in form

    Great! I got it! Thanks for your help!!! I'll mark this completed.
  9. C

    How to make a new table from fields entered in form

    I'm having troubles with my waste factor field, it's type is percent. In my table comes out as Ẹ. Can't find out anywhere what that means??? Any help on this? Thanks!
  10. C

    How to make a new table from fields entered in form

    Ok, think I got it! But when you do the Forms![MyForm].[FieldName], how do you express numerics? One field is a numeric(double number) and the other a percent. Thanks!
  11. C

    How to make a new table from fields entered in form

    Ok, don't think I'm explaining myself or I'm just not making sense. This form has the 4 fields in it for the end user to request what data they want ran for a report. It use to create a table from these 4 fields, which then in turns runs a macro that runs many queries to calculate an ending...
  12. C

    How to make a new table from fields entered in form

    Thank you for your suggestions, appreciate! I do understand the skepticism in your replies, but this is a database that was created by someone else and I'm just trying to do something for the end user while the main programmer is gone. I don't want to start fixing everything, just want to get...
  13. C

    How to make a new table from fields entered in form

    Hi, I want to know how to create a new table from 4 fields entered in a form. The reason I'm doing this, because I'm creating a report that goes through numerous macros to come up with the results. And in the beginning I'm creating a table that is use in all my queries. But not knowing how...
Back
Top Bottom