Search results

  1. D

    Grouping on a Multivalued Field

    what do you mean group the managers in a query?
  2. D

    Grouping on a Multivalued Field

    I have a report that is grouped by a few criteria, one of which is a multivalued field "manager". The report displays "purchase orders" grouped by "customer" and then again by "manager". some of the "purchase orders" have 2 "managers" and currently the grouping separates the 2 managers into 2...
  3. D

    strage report/subreport behavior...

    i officially gave up. i made the text box where i was trying to resize the text twice as wide so it doesnt matter now. thanks for the efforts anyways
  4. D

    Subreport Totals on Main Report

    you might be able to do it by creating 2 hidden controls to initially hold the value 0, and writing a similar IIF statement that would go something along these lines IIF(Report.HasData, control +=1,) so that it adds one for each valid value. then divide by the control in the main set of IIF...
  5. D

    Subreport Totals on Main Report

    Thanks! don't forget to mark this as solved by using the thread tools menu! Derek
  6. D

    Subreport Totals on Main Report

    Glad I was able to help and that you figured it out. I'm relatively new to access and felt bad only asking questions, so having an answer is cool
  7. D

    Subreport Totals on Main Report

    I think for the second one you used IFF rather than IIF
  8. D

    Option Group

    you could probably accomplish this by using some code in an "event" without more detail i can't get specific on an answer
  9. D

    Subreport Totals on Main Report

    from what i can see you are missing the 0 portion of the argument. try this: (IIF([rptEmployEvaluationOperator subreport].[Report].[HasData], [rptEmployEvaluationOperator subreport].[Report]![OPTotal], 0) + IIF(Next report,field you want, 0))/2
  10. D

    strage report/subreport behavior...

    ok so i got the DSum working using the following: =DSum("CountOfEmployees_EmpFull","POSummaryRates","POID=" & [POID]) but the debug staetments are still showing that [POSummaryAvgRate].[Report]![numEMP], where numEMP is the DSum is always 1 so the font size is still not changing. the numEMP...
  11. D

    strage report/subreport behavior...

    since this Dsum is in a control in a subreport, how would i set the criteria for it to match the POID(purchase order number) from its source query with the main reports POID for grouping?
  12. D

    strage report/subreport behavior...

    i changed the contents of numEMP to =DSum("CountOfEmployees_EmpFull","POSummaryRates") which gives me a count of 9 which is correct for the total across all 3 purchase orders, 1+1+7. now the font size on all 3 pages is size 6. now i just need to have it group by purchase order number and ill...
  13. D

    strage report/subreport behavior...

    some of the odd behavior can be seen in my attachments
  14. D

    strage report/subreport behavior...

    so after throwing in some debug.prints, its showing that [POSummaryAvgRate].[Report]![numEMP] is always 1 and fontsize is always 10 as i flip through the pages of the report. the last page of my report the numEMP should be 7
  15. D

    strage report/subreport behavior...

    I will insert a message box after i finish this reply. I can tell the font size has been staying at 10 because i can visually see it across multiple pages of the report. As for the value of numEMP, i have 2 extra text boxes on my report that contain "=[POSummaryAvgRate].[Report]![numEMP]" both...
  16. D

    strage report/subreport behavior...

    Text15 is in the POID Header section. On Format for the POID Header section is as follows: Option Compare Database Private Sub GroupHeader0_Format(Cancel As Integer, FormatCount As Integer) If [POSummaryAvgRate].[Report]![numEMP] = 5 Then Me.Text15.FontSize = 9 ElseIf...
  17. D

    strage report/subreport behavior...

    On Format event is in the "POID Header" which is where the text box it should be styling is also located.
  18. D

    strage report/subreport behavior...

    no luck there either, font size stays the same still.
  19. D

    strage report/subreport behavior...

    The main report is called "ProjectSummaryReport" The subreport is called "POSummaryAvgRate" the subreport control containing the sum of employees is called "numEMP" The main report control im working with is "Text68"
  20. D

    strage report/subreport behavior...

    this asks me to enter parameter value for numEMP
Back
Top Bottom