crystal-reports-2008

right to left multi-column in crystal report

一笑奈何 提交于 2021-01-27 20:27:05
问题 in crystal report we can implementing left to right multi-column by default but i need change direction of multi-column report to RTL, is there any solution for that? many thanks. 回答1: I don't believe it's possible using standard functionality- but how about this for a workaround: Let us imagine we currently have a single detail row a. Create a new detail row b. Move the fields on detail row a to the right hand side. Copy the fields to detail row b on the left hand side. Set detail section a

How to grow height or all fields of a “textboxes made” grid if one column's height grows in crystal reports?

爱⌒轻易说出口 提交于 2020-02-03 10:34:26
问题 I am attaching an image to elaborate what i want to know Crystal reports dont have any specific grid control I have made a grid using textboxes in crystal reports 2011 for vs2010, But the problem is, if one of the column grows, i want to grow all text boxes of a row, as i have placed the grid in Details section of crystal report. In image attached, you can see, description's height increases because extra text and "can grow" checked, i want if description increases whole row's height should

How to summarize a formula field in crystal reports?

六月ゝ 毕业季﹏ 提交于 2020-01-23 09:52:57
问题 How do I add a running total or summary field on a formula field in crystal reports? // Sample Report Serial No. Premium Commission Net (Premium-Commission) ----------------------------------------------------------------------------- 1. 10 4 6 2. 40 30 10 --------------------------------------------------------------------------- Grand Total 50 34 16 In sample report, Net (Premium-Commission) is a formula field which gets evaluated for each row? How do I add a grand total/summary field for

How to summarize a formula field in crystal reports?

元气小坏坏 提交于 2020-01-23 09:52:28
问题 How do I add a running total or summary field on a formula field in crystal reports? // Sample Report Serial No. Premium Commission Net (Premium-Commission) ----------------------------------------------------------------------------- 1. 10 4 6 2. 40 30 10 --------------------------------------------------------------------------- Grand Total 50 34 16 In sample report, Net (Premium-Commission) is a formula field which gets evaluated for each row? How do I add a grand total/summary field for

supress zero rows in crosstab crystal reports

烂漫一生 提交于 2020-01-16 21:51:16
问题 I have crosstab looks like this Jan Feb Emp1 500 600 Emp2 600 700 Emp3 0 0 I want to hide the row3 as it has zero values. I have seen in crosstab expret to supress empty rows but that doesn't server the purpose. I want output like this Jan Feb Emp1 500 600 Emp2 600 700 回答1: Create a SQL Expression that returns a NULL: -- {@DB_NULL} -- Oracle syntax ( SELECT NULL FROM DUAL ) -- {@DB_NULL} -- MS SQL syntax ( SELECT NULL ) Create a formula field to convert 0 to NULL: -- {@data} If {table.field}

Crystal Reports & VBScript - Could Not Locate Automation Class

半城伤御伤魂 提交于 2020-01-15 13:11:04
问题 First off, I have very little Crystal Reports experience, so apologies in advance if this is a stupid question. I had this "fantastic" work project dumped on me when a co-worker left, so I'm hoping someone can help as most of the Business Objects links I find that might have solutions just redirect to a generic SAP splash page. So I have a few hundred Crystal Reports (mostly File Schema 10.2, although some are 8.5 or 12.0) that are stored on a server. All of them have an associated VBScript

How to send parameters to Subreport in Crystal Reports

不想你离开。 提交于 2020-01-13 03:22:47
问题 Using VS 2008. I have two stored procedures, one used to get data for the main report and other for Sub report and both the SP's use the same parameter QuoteID. I have send parameter to main report using ReportDocument. But I am not aware how to send parameters to SubReport. I tried many diff ways using the reportdocument's setparameter method which also takes subreport name as argument.But it didn't. Below is the code I have used string Type = gvQuotationDetails.Rows[QuoteIndex].Cells["Type"

How to work in Crystal Report with Object Data Source?

落花浮王杯 提交于 2020-01-06 14:34:11
问题 How to work in Winforms Crystal Report with Object Data Source? So far I have found web-links to use Crystal Report with DataSets or Databases directly. Can anyone show me how to do it like this? 回答1: its the same as before... reportDocument.SetDataSource(List1); 回答2: <CR:CrystalReportViewer ID="crvmyDataReport" runat="server" ReportSourceID="crsmyData" EnableDatabaseLogonPrompt="False" DisplayGroupTree="False" EnableParameterPrompt="False" ReuseParameterValuesOnRefresh="True" BorderStyle=

Maximum and Minimum values from a summed Formula in Crystal Reports 2008

守給你的承諾、 提交于 2020-01-06 13:30:51
问题 Maximum and Minimum values from a summed Formula problem Hello, I am currently using Crystal Reports 2008 which is getting its data from an Oracle database. I have looked into this at length and I have been unable to find the information I need. I have query about getting the Maximum and Minimum values from a given formula which totals 2 or more fields. A snapshot of the information I am using is: Field1 = dB1.Left_Serious Field2 = dB1.Left_Dangerous Field3 = @Tester Formula = @LeftTot Fields

Maximum and Minimum values from a summed Formula in Crystal Reports 2008

倾然丶 夕夏残阳落幕 提交于 2020-01-06 13:29:16
问题 Maximum and Minimum values from a summed Formula problem Hello, I am currently using Crystal Reports 2008 which is getting its data from an Oracle database. I have looked into this at length and I have been unable to find the information I need. I have query about getting the Maximum and Minimum values from a given formula which totals 2 or more fields. A snapshot of the information I am using is: Field1 = dB1.Left_Serious Field2 = dB1.Left_Dangerous Field3 = @Tester Formula = @LeftTot Fields