on ‎2022 Jan 17 11:04 PM
Hi All,
I want to truck shipment over specific period for example Q1 and Q2 for 2018 - 2019 and represent result in crystal report chart.
I do left join date table with shipment table but date with no shipment is not being displayed. I want to display all dates for each item even no shipment.

Kindly advise me
Request clarification before answering.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would create two formulas to set default values for these fields when they're null. They would look like this:
{@Item}
if IsNull({MyTable.Item}) then 'N/A' else {MyTable.Item}
{@Cost}
if IsNull({MyTable.Cost}) then 0 else {MyTable.Cost}Be sure to set the null handling in the Formula Editor to "Exceptions for Nulls" so that IsNull() will work correctly. Then, use these variables in the chart instead of the fields.
-Dell
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 12 | |
| 9 | |
| 7 | |
| 5 | |
| 4 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.