Crystal Report Using List Items - vb.net

Can anyone help me to get the result in crystal report as displayed in the image where I have 3 tables.
Would it possible to show to bill in crystal report with the help of RecordSelectionFormula? Other method will also work.
Click here for Image with tables and bill format required

Create a group on Bill NO. and set ID and Item Name in Details.

Related

How to program crystal report to lookup a record in a table

i Have a Table with Fields
Material Number
Order Code
Supplier Code
Description
I have a crystal reports rpt file that i manually enter all the information to generate labels.
I am trying to program this using the built in formula editor, so when i enter the Material Number (which is a unique code) it will automatically display other 3 relevant fields.
I have tried few formulas in the formula editor without any luck.
can anyone help?
relliK
UPDATE
#Siva - I have added the table for clarification
i simply want a lable printed with only one user input being the Material Number, and then the code/fomula in crystal reports to fetch the other data based on the Materila number and produce the label.
thank you for you interest in this issue.
UPDATE
#Siva - I have added a sample label, i would only want to enter 20506871 as Material and the other data fields to be pulled from excel
not sure if i can use parameter fields and/or i would like some help on programming the parameter fields

How to achieve this in crystal report?

How to do this in crystal report with sub-report
the image above is from excel and that's what im trying to achieve..and here's what i do in crystal report
and after i run it..the result is devastating..lol here's what it looks like
the sub-report is just keep on repeating..lol how to fix this ? i already set the sub-report link id's..it's all good but the only problem is that its keep on repeating where what i want is to only show the sub-reports content if the id's is match..btw im using vb.net for the project
Don't put it in the Details Section. I suggest you put it in your Report Footer Section or Group Footer Section (based on which group you are summarizing). Putting it in the Details Section will repeat the Sub Report depending on how many records you show in that area.

Displaying Multiple String Values as separate fields in Crystal Reports

I'm a bit of a noob with crystal reports so be as detailed as possible.
I'm working with two fields in a report, "CRD_NAME", and "CREDIT_CARD_AMOUNT". I can right click the former to browse data and see the credit card types: AMEX, VISA, DISCVR, and MASTER. When I drag this field out to the report, it will only display one value (currently "AMEX").
When I place the Credit_card_amount field under this, it will properly display AMEX totals for that day. Browsing data on this field shows all of the CC totals, and I'm not sure how to associate them with a card type.
What I'm looking to accomplish, is to have CRD_NAME repeated in 4 columns, displaying the different CC types, and the correlating totals under each one. Do I need to create multiple parameters for each field and what I want it to represent?
Any clues would be much appreciated :)
Your best bet might be to create a "Cross Tab" crystal report. When you create a new crystal report, cross tab is one of the options.

Using CR subreports for displaying two distinct reports in one blank main report

I have written a sql query for a view that return some information but when grouping in a CR report some data gets mixed and exact data is lost. what i did is to create two reports when testing, each report return the data i want ( one report for canceling fees and other for earnings ). I then had the idea to create two subreports for each correct report and display both of them in a main report. both report use a SQL view and have formula fied which filter some dates.
When i try to display those subreport in a report all i get is a blank report with no data. i tried to link those subreport with a field but eventough. no data was shown.
Could someone point me some track for getting this work ?
Thank you in advance

Display specific rows in crystal report vb.net

I'm having a problem on my crystal report. Is there any way on how can I display specific rows in a crystal report? For example all records with an ID of 00234 will be displayed in a full crystal report. Is there a way?
Use Section Expert.
Go to Report -> Section Expert. Select the Details section on the left side. Click the Formula icon beside the Suppress option on the right, and enter a formula in the editor. Rows that evaluate to True will not appear on the report. If you enter [ID] <> 00234, then only rows with ID = 00234 will appear on the report.