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. lthomas6

    extra empty column when exporting to MS Excel

    The column labels are attached to the same guidelines. I am choosing all fields and column labels and setting to same height. Is there anything else I should be doing?
  2. lthomas6

    extra empty column when exporting to MS Excel

    Perhaps it may help if I state what the formula field contains. It is as follows: @display = whileprintingrecords; stringvar x; if len(x)>1 then left(x,len(x)-1); This is placed in the group footer. In the details, there is another formula @accum = whileprintingrecords; stringvar x := x +...
  3. lthomas6

    extra empty column when exporting to MS Excel

    lbass- they do move to the left and right this is why I don't understand why they are not working. turbear - i tried that and it didn't help. It actually created 2 additional columns. Any other suggestions?
  4. lthomas6

    extra empty column when exporting to MS Excel

    I have a Crystal 10 report using SQL. For the extra spacing, I did the following and it worked for all columns except for one. - all the headers and fields are the same height and are aligned at the top -used guidelines to link column headers and fields together so there is no white space...
  5. lthomas6

    converting Oracle driver to SQL driver?

    I have a crystal 10 report which was created using an Oracle driver and uses a command object that points to an Oracle database. Now this report needs to point to a SQL database. Is there an easy way to achieve this without creating a new report?
  6. lthomas6

    where Conditionals in Database expert

    I am trying to to see if the database expert in Crystal has a way where I can put my where conditionals in it instead of the select expert. The issue I am facing is that since I have 8 reports in the report where 5 of them are the same table but with different aliases, it is causing an...
  7. lthomas6

    using semicolons to separate more than I record

    I had a make a change to this to have @accum = whileprintingrecords; stringvar x := x + {Entity_1.Name} & " " & "(" & {corptax1.UserFieldValue} & ");" The issue I am having is that sometimes {corptax1.UserFieldValue} can be null. In that case I want it to display nothing. In this case it is...
  8. lthomas6

    Semicolons to be used for multiple records in main report only.

    Ok, I understand what you mean now. I was able to achieve my goal. Thank you!
  9. lthomas6

    Semicolons to be used for multiple records in main report only.

    This report is different. It does not have any subreports. The approach that was used there was creating a group and that will not work in this case since we cannot have the data grouped but display in details section. Let me know if I need to provide further information on this for...
  10. lthomas6

    Semicolons to be used for multiple records in main report only.

    I have a crystal 10 report using sql backend which pulls the following data. This report does not have any groups and is pretty straightforward.The details secion is where all the data lies. There is one field which displays ownership info for an entity. ie: taxcode record# Entityname...
  11. lthomas6

    Line Insertion

    Thank you, that worked!
  12. lthomas6

    Line Insertion

    I have a crystal 10 report using sql backend with following setup Group header displays the following: _______________________________________________________ Matter Type: Commercial Contracts _______________________________________________________ Details section displays the...
  13. lthomas6

    using semicolons to separate more than I record

    I am now able to get it all to work. This error was due to a null value so I updated the @display formula to read: whileprintingrecords; stringvar x; if not isnull({Entity.Name}) then left(x,len(x)-1) else " ";
  14. lthomas6

    using semicolons to separate more than I record

    I have 2 subreports for this report. Each pulling the same data but for different types of role_cd's. I have 1 subreport call srPrimaryLegal where I have created the 3 formulas below: @reset: whileprintingrecords; stringvar x:=""; @display: whileprintingrecords; stringvar x...
  15. lthomas6

    using semicolons to separate more than I record

    Sorry about that. There are no formulas. In the subreport, it is one field placed in the details section.
  16. lthomas6

    using semicolons to separate more than I record

    I have a crystal 10 report, sql backend using 2 database views. The main report usese only 1 db view. The issue lies in the 2 subreports which use a separate db view. For the field matterplayer in the subreport, it can return more than one matterplayer. If so, it needs to be separated by a...
  17. lthomas6

    IF then statement

    I figured it out. instead of going to prompts, I pulled directly from the source using the below and it works fine now. If {V_CUSTOM_RECTYPES_FILTERED.RECORDTYPE} = 'NYSE Cases' or {V_CUSTOM_RECTYPES_FILTERED.RECORDTYPE} ='Expedited Cases' then "Statistical Overview of "...
  18. lthomas6

    IF then statement

    In my case not sure if {?Disciplinary} = True and{?Disciplinary} will have same logical result since each of the parameters is set to a boolean. ie. the prompt {?Disciplinary} is type of boolean where the values are either True (if checked) or False (if not checked). I tried the explicit parans...

Part and Inventory Search

Back
Top