Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. RobbieB

    Greenbar affect on Groups

    Interesting solution Lbass, thanks for posting it. I've had the same problem in the past and hadn't thought of this. Thanks.
  2. RobbieB

    Greenbar affect on Groups

    Also, do you have it in the header or the footer? If you have your summaries in the footer move hem all to the header and try formatting that section.
  3. RobbieB

    Greenbar affect on Groups

    Your syntax is correct (I usually use If remainder (groupnumber,2) <> 0 then cryellow else nocolor) but does not always work when there is more than one group. If there is a group at a "higher level" than this group you will not always get the desired effect.
  4. RobbieB

    Division by zero error

    Try changing this section to numbervar mytot:=mytot+{Command.APPROVED}%(if Sum ({@po}, {Command.RCVR} = 0 then 1 else Sum ({@po}, {Command.RCVR})) I'm guessing this is the field causing your error.
  5. RobbieB

    Problem updating dynamic parameters in Crystal Reports XI

    once you have selected the "dynamic" radio button creating a dynamic parameter in XI you then need to specify which field to use in the value field of the edit parameter screen.
  6. RobbieB

    Calculations with Subreports

    That's why I had this part in the code. "if Sum({Orders.Order Amount}) = 0 then 0" to account for the sub report not having data. You could also create a default value for the second example I gave but I didn't include it.
  7. RobbieB

    Calculations with Subreports

    Hey ForMe2, you can do this a couple of ways. You SHOULD be able to say in the formula in the sub report - WhilePrintingRecords; Shared CurrencyVar myTotal; if Sum({Orders.Order Amount}) = 0 then myTotal:=0 else myTotal:=Sum({Orders.Order Amount}) OR you can do it by putting this formula...
  8. RobbieB

    Left join and Right join

    Even using an ODBC connection with tables from two different data bases I have had this problem.
  9. RobbieB

    Left join and Right join

    Are the two tables from the same datasource? The only time I've had this happen was when joining to tables from different datsources.
  10. RobbieB

    How to calculate months and years

    This is great SynapseVampire but what does the number 430 represent. that is the only part of the funtion I don't get. Thanks, Rob
  11. RobbieB

    Suppress a field if parameter is not null?

    If you are trying to suppress the {cpmain.plaintiff} in the report when the parameter is selected you should be puttting this formula in the the formatting of this field. You should right click the {cpmain.plaintiff}, select format field, select the common field and click the X-2 button to...
  12. RobbieB

    failed to connect to server

    When reports are published to your intranet there is an option to put in a user name and password for the data source so the end-user does not have to. There is the possibility that the old report writer used his user name and password when publishing the reports and now that his user name and...
  13. RobbieB

    Shading a Column or Highlighting

    If I understand your question the answer is yes. You can insert a text box and right click it, select format text, and under the border tab click "background" and designate a background color.
  14. RobbieB

    Suppress a field if parameter is not null?

    close, try If isnull({?Long Plaintiff}) then {cpmain.plaintiff} else {?Long Plaintiff}
  15. RobbieB

    Setup the CCM and CMC

    Did you make sure your virus protection software is allowing access through port 25? If you are using McAffee right click the icon in the sys tray, go to virus scan console, double click access protection and make sure the first item in the list "Prevent Mass Mailing Worms From Sending E-Mail"...
  16. RobbieB

    Extra rights to a user

    Hilfy's recommendation is how I have our security set up but there are some people who are part of a Group (say Retal) who need to be able to access the Accounting reports. So, rather than grant access to the whole Retail Group and because I don't want to the person from Retail to be able...
  17. RobbieB

    Extra rights to a user

    Have you tried going into the cmc\folders\objects, select the report, click rights, add\Removethen in the selectoperation drop down, select users, find theusers name, add him\her click "OK" and give them the necessary rights. I'm guessing "View on demand" unless the inherited rights will give...
  18. RobbieB

    Scheduling - Parameter (default value as a formula?)

    No problem, sorry I didn't fully understand if you started with and SP or if you switched to using one to fix this problem. Good luck and happy reporting.
  19. RobbieB

    Scheduling - Parameter (default value as a formula?)

    Exactly, That's why I started my post by saying "There are ways of doing this through Crystal...". It was unclear to me if the report was based on a stored procedure or if he created a stored procedure to deal with the parameter issue. So, I suggested a very easy way of dealing with this...
  20. RobbieB

    Scheduling - Parameter (default value as a formula?)

    Davida, there are ways to do this through Crystal as well. Create a copy of the report, delete the parameters and set the values you need for the report. For instance, We have a sales report someone wants in their inbox every monday morning. I make a copy of the report with SchedVers at the...

Part and Inventory Search

Back
Top