Normally if we have report without any sub report in it, it is easy to print twice the report by adding same report in page footer as sub report . But if report contains already subreport than it is not possible to again add subreport in it. So how can we Print such report twice in crystal report.
I Want to Print 1 report in two copies(2 Prints ) with same data in crystal report having Subreport?
2.3k Views Asked by Dev At
1
There are 1 best solutions below
Related Questions in CRYSTAL-REPORTS
- Monthly attendance report in Crystal Report
- Alternative to Crystal Reports in Azure PAAS (app model)
- c# culture change datetimeformat but crystal report not working
- I'm confused about what to use to run Crystal Report in a client C# Winforms app
- Problem with visual basic 2022 and crystal report
- I am receiving a color formatting error when trying to run a Crystal Report in Personify
- Use Crystal report in an integration flow in SAP CPI
- I want to integrate Crystal reports or SSRS reports in react js
- Multi group with multi column in crystalreport
- SQL ODBC Connection in Excel - Error 08001 (Works in Cystal Reports?)
- Crystal Report is unable to open connection
- Barcodes printed using Crystal Reports via vb.net can't be scanned
- Making 2 textbox fields to dynamic in size
- Retrieving the COM class factory for component with CLSID on plesk server
- Crystal Report passing Main Report Parameter to sub-Report parameter without sub-Report linking option
Related Questions in CRYSTAL-REPORTS-2010
- Crystal Reports Issue with Logo Suppressions
- Invalid column name error when passing Name parameter
- Show/hide a column in crystal report with condition
- How to Arrange multiple Group Headers correctly?
- Crystal Reports 2020-Display subreport in sequence, i.e. when subreport 1 is finished, subreport 2 starts on a new page
- Crystal reports "Attempted to divide by zero" when trying to print but preview is working fine
- Conditionally suppress record ID if it is the same as previous record ID but display the running total in detail records of crystal reports
- po line items to grpo
- Could not load file or assembly 'CrystalDecisions.ReportAppServer.CommLayer, Version=13.0.4000.0
- Crystal Report Is Not showing while it is installed already latest version (VS2012 AND VS 2019)
- How to include special characters in Crystal report as a literal string?
- Crystal report calculated values shown at the end of report
- Crystal reports Query for subreport
- Crystal Reports - Export XML String as Text file
- Cross reference table in crystal reports
Related Questions in CRYSTAL-REPORTS-XI
- Show/hide a column in crystal report with condition
- how to upper case in crystal report
- Crystal Report - export to html with separate file attached
- Crystal Reports: How to Identify Usage of a Subreport in Crystal Reports Project?
- Crystal Reports - Nested IF Statement Issue
- I'm getting a "Boolean Required" error in my Crystal report
- Crystal reports Query for subreport
- Crystal Reports - Export XML String as Text file
- CRXI: Need help removing duplicate workorders, only showing the one with the highest sequenceID less than 900
- Cross reference table in crystal reports
- Trying to write a crystal report if statement with multiple if's and else and getting a Boolean error
- Multi-line Fields in Crystal Reports
- Is there a way that I can calculate the division of the two formulas containing a shared numbervar with grouping condition?
- Can someone help me with a crystal report formula issue?
- Crystal report Group header not show on report footer
Related Questions in CRYSTAL-REPORTS-8.5
- Crystal Reports Issue with Logo Suppressions
- Display Empty Fields Above and Below Filed
- Crystal Reports Stock description
- Crystal Report to BI conversion - Query Expression
- Crystal Reports - Export XML String as Text file
- crystal reports not work in client machine with "error '713' Application-defined or object-defined error"
- Getting error 20507 while launching Crystal Report 8 using VB6
- can i select a single and multiple rows by mouse in crystal report preview if not any possibility to select as check box
- Ask if anyone have the installer of Seagate Crystal Report 5 or 6
- Calling Crystal Report File
- Crystal Reports with VB6 .dsr file
- Printing Multiple Columns on Crystal Reports
- Display records horizontally in Crystal Report
- Crystal Reports 8.5 report runs stored procedure twice
- Set Crystal Reports ParameterField to NULL at runtime
Related Questions in CRYSTAL-REPORTS-SERVER
- How to display results for each year dynamic column in Crystal report
- Crystal report PDF font issue for japanese characters using Java
- How to Print specific row in each page Crystal Report
- Whenever I drag the Crystal Report Viewer to show the form it goes down without showing from view
- Get information horizontal in Report Footer
- Crystal Report - detail section increment horizontally according to Order number
- I Want to Print 1 report in two copies(2 Prints ) with same data in crystal report having Subreport?
- Crystal Report Server - Print Job Limit
- Crystal report : File is too large for attachment. Error code:0 [CRWEB00000119]
- schedule reports in Crystal Server
- Unable to schedule crystal report on crystal server and destination as email?
- Failed to retrieve data from the database [Database Vendor Code: 8169]
- Crystal Report Syntax color font change not working
- Crystal Report Permission Issue
- How to display comma separated value of a single column at group footer section
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It must exist a better solution, but here it goes two workarounds:
Alternative 1:
Turn your main report into a subreport (with its child subreport) and duplicate it in a brand new main report.
Advice: subreports use to perform poorly, but if your data is not large, it is ok.
Alternative 2:
If you can easily manipulate the data source (for example, if your generating a dataset through code), use the details section for your report, insert an extra table in your data source where the number of lines is the number of "copies" that you want to print. Let your main table join with this "fake" table without links. The result will be a cartesian product, so you will get the number of copies you want.
Extra note: Crystal let you use another rpt file as a subreport. Maybe you can use this feature to solve your problem. Personally, I don't like this feature, because it does not behave like I would expect by intuition.