|
I have a crystal report function which requires me to trim off characters which start with a "-" and delete the rest following the the "-" (dash).
for example.. I would have order number 112345-C43-PJ
how would I just trim off everything from the "-" ...
Started by phill on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Check out their website....
I heard it might be a feature in the latest crystalCrystal might not have regex but it certainly has all the basic string functions
Something like reports (16?).
Been a feature in Crystal reports for a while.
|
|
Is there free software that converts Crystal Reports .rpt files to SQL Reporting 2008 .rdl files?
Started by JonathanWolfson on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You'll quickly find out that this isn't allowed due to Crystal licensing restrictions.
|
|
When I'm creating a crystal report and when I add fields and fields to a database, the report outputs a completely blank report for the invoice I am creating. How do you debug a crystal report?
Do you setup markers or flags to output? Is there an error...
Started by phill on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I'm guessing there is some logic in a join or display formula that is ... .
Your 'no records' empty report can be caused by someYou should get an error if there is an issue with the report.
Makes it much much easier to build reports.
|
Ask your Facebook Friends
|
I'm trying to set up a report to run monthly in Crystal Reports Server 2008 that will give me the next month's Affordable Care Plan termination dates. However, as far as I can tell, I can only give it a particular date string, not "7 days after the report...
Started by SarekOfVulcan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
This technique may help you: Crystal Reports.
Can you not just modify the crystal report to perform a dateAdd on the current date the default: otherwise, use the value of MyParameter.
Net.com/ is one.
|
|
Is it possible to rename a report section in a crystal reports using the version of crystal that is built into Visual Studio 2008?
If so how can this be done.
Started by Banford on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you mean "Given a report grouped by a field.
There are several ways to interpret your question.
|
|
I have a formula @InitVars in the page header which includes the following, and similar lines:
shared numbervar runWaste:=0;
In Details v, I have a sub-report, which has a formula @SetRunWaste:
shared numbervar runWaste; if (OnFirstRecord) then ( if not...
Started by LeBleu on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Suppose we want to find....
reports ,Find Sub Total and Grand Total(To main Report) :
Crystal Reports is a business intelligence (ItemTotal)
Grand Total
Sub reports are very useful option in crystal report.
|
|
Hello,
I have a number of reports that need to be both run separately and also as a group.
I've created these reports and was hoping I could just create a form where I could just append report1, report2, report3... together without creating a different...
Started by Nathan Koop on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Or instead, don“t use crystal reports, it's too messy.
Create a third report that has the first N reports setup as sub-reports in the header one after coding, less trouble for you.
|
|
What's the latest official word from Microsoft about VS 2010 continuing support for Crystal Reports?
Started by Tony_Henrich on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
SAP....
It turns out Crystal Reports will not be included in Visual Studio 2010.
For the current plan, Crystal Report related project will be back in the future release of Visual to an offical blog post from SAP on the subject.
|
|
Hi
My Crystal Reports is working well in the localhost but not on the server. When I press the calender in crystal report, it shows Run time Error.Iam using ASP.NET 2.0,vb.net,SQL 2005 how can i configure crystal report in the server
Answer Snippets (Read the full thread at stackoverflow):
This may.
As dincer80 said, you should deploy Crystal reports properly.
Xcopy the application you need to create an installer project and include crystal reports as a prerequisite for your application.
|
|
Hello,
I want to know the minimum value of the Crystal Reports datetime datatype.
I know .NET's, I know SQLServer's, but I cannot find anywhere on the internet Crystal reports.
Thanks,
Started by Nathan Koop on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Doesn't ....
Larger than everyone else...something like 1-01-01 to 9999-12-31
You will get the error message "Dates must be between year 1 and year 9999"
What do you need it for? I usually just use #1900-01-01#, if I need a base date for date arithmetic .
|