Search results

  1. F

    Triple many to many relationship

    VilaRestal and Pat Hartman, thanks for all the suggestions. I am studying how best option to solve my problem. Thank you.
  2. F

    Triple many to many relationship

    VilaRestal and Pat Hartman, thank you for responding and helping. sorry VilaResta, I do not quite understand what you say quiz. I have to create a second table join? images of relationships attached. Thank you. Now Hartman, I was a little confused by your explanation, but I think that...
  3. F

    Triple many to many relationship

    Friends, I am having difficulty creating a relationship of tables in a database. I have a table and another table technology company. For each technology has several companies, and for each company have different technologies. A many to many. I created a join table to resolve this issue, with...
  4. F

    Report is blank when opened. Print preview ok. Print ok

    vbaInet, thank you for your help, Sorry for being slow to respond, I was without internet. I was able to partially resolve.I put a button on the form to open the report. Thus, it opens directly in Print Preview, subreports showing correctly and also printing correctly. Again, thank you.
  5. F

    Report is blank when opened. Print preview ok. Print ok

    Okay, I'll prepare better. I created eight reports using the wizard through eight different queries. Then I created a report with 8 subs using reports created earlier. I'm trying to hide subs when empty, and also not to be blanks. I managed to do this using the following procedures: In the...
  6. F

    Report is blank when opened. Print preview ok. Print ok

    Friends, I have a report with eight subs. I was trying not to show empty sub, and in subreport also part white. Resolved, but to place it can shrink and can expand, for all sections of all subreports also placed time zero for all subreports. In the event when loading the subreport I repeat...
  7. F

    Dates before 30 days

    Paul, Thank you. It worked perfectly. Thank you
  8. F

    Dates before 30 days

    pbaldy, How do I put the sql, so I tried but did not work. Syntax error (missing operator). SELECT TblAnalista.NomeDoAnalista, TblEmpresa.NomeDaEmpresa, TblProduto.NomeDoProduto, TblPassosStatus.Passo, Nz([DataReprogramada],[DataProgramada]) AS DataDue, TblPassosStatus.C FROM ((TblAnalista...
  9. F

    Dates before 30 days

    pbaldy, thanks for responding. Sorry, I drew up wrong, I'm trying two criteria. I'm trying to dates before today between 15 and 30 days. For example, dates from March 19 until April 4, ie 30 days before until 15 days before today. Thank you.
  10. F

    Dates before 30 days

    Friends, I have this sql statement: SELECT TblAnalista.NomeDoAnalista, TblEmpresa.NomeDaEmpresa, TblProduto.NomeDoProduto, TblPassosStatus.Passo, Nz([DataReprogramada],[DataProgramada]) AS DataDue, TblPassosStatus.C FROM ((TblAnalista LEFT JOIN TblEmpresa ON...
  11. F

    previous record

    It really is a date. I got it. I just added the name of the subform: DataAnterior = DLookup("[DataRealizada]", "TblPassosStatus", "[CodPassosStatus]=Forms![fFiltros]![subTblPassosStatus]![CodPassosStatus]-1") I'll also try with the code you sent me. Thank you for help.
  12. F

    previous record

    I tried DLookup, but did not work: DataAnterior = DLookup ("[DataRealizada]", "TblPassosStatus", "[CodPassosStatus] = Forms! [FFiltros]! [CodPassosStatus] -1") Where did I go wrong?
  13. F

    previous record

    okay. I have a subform with four fields: step, the scheduled date, place and date rescheduled date. By changing the field step, I need to identify the value of the field held the previous record date. Thank you.
  14. F

    previous record

    okay. I have a subform with four fields: step, the scheduled date, place and date rescheduled date. By changing the field step, I need to identify the value of the field held the previous record date. Thank you.
  15. F

    previous record

    Yes, thank you
  16. F

    previous record

    In VBA, as I refer to a field value from the previous record in a subform.
  17. F

    combo box in alphabetical order

    pbaldy and Beetle, thanks for responding and helping. Beetle thanks for the tips, It worked perfectly. Thank you.
  18. F

    combo box in alphabetical order

    Gentlemen, I have a form with three combo boxes where one filters out the other. I'm trying to put them in alphabetical order And the ORDER BY is not working. I tried a few: 'Me.combEmpresa.RowSource = "SELECT CodEmpresa, NomeDaEmpresa FROM TblEmpresa WHERE CodAnalista= " &...
  19. F

    consultation with field for multiple criteria

    Nickha, Sorry for being slow to respond, was having problems in my broadband. Actually my problem was a bit complex, but managed to solve by making three appointments, one from the other. I appreciate the help and attention, I will mark as resolved. Again, thank you.
  20. F

    consultation with field for multiple criteria

    Thank you for responding, for help. I'm trying to make an appointment to make a report by each assessor. I have a form where there is a comboBox with the names of advisors. After selecting a name, I'm trying to open a report with all the companies and products, and won every step of their...
Back
Top Bottom