Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

YTD formula in Crystal Report

Status
Not open for further replies.

MyCrystalBoy

Programmer
Oct 7, 2014
7
US
Hi all,

I am creating a report with Crystal Reports V.11 but I am stuck with the YTD. Anyone can help me how do I have the dynamic YTD on my the report by monthly?

Here is the scenario:
In the database, there are couple fields that I am using on the report. They are:
1. {Year}
2. {period}
3. {Debit}
4. {Credit}

Here are the data from database:
Year Period Debit Credit
2015 01 $100 $500
2015 02 $150 $400
2015 03 $200 $700

To get the profit, I have a formula for called profit = round({credit}-{debit})
So based on above data, my profit in
2015 01 is $400
2015 02 is $250
2015 03 is $500

What I am trying to achieve is, if I run this report on January
I should have this layout with correct YTD amount:
Year Period Profit
2015 01 $400

and if I run the report next month, which is February, I should have this layout with correct YTD amount:
Year Period Profit
2015 02 $650

and...if I run the report on March, I should have this layout with correct YTD amount:
Year Period Profit
2015 03 $1150

so, let' say if I want to re-run the report of February in May, I should get the layout and correct YTD amount like this:
Year Period Profit
2015 02 $650

Anyone can help me to do this YTD? Thank you all
 
PARMS
YTD ==== SELECT NUMBER
YEAR ==== SELECT DATE
PERIOD === SELECT NUMBER




SELECT
ypdc.Year
,ypdc.Period
,P.Debit
,P.Credit

FROM
YPDC ypdc
Profit p
LEFT OUTER JOIN on ypdc.YEAR = P.YEAR
LEFT OUTER JOIN on ypdc.PERIOD = P.PERIOD
WHERE
IF YTD NOT EQUAL 1 THEN
YEAR = P.YEAR AND AND P.PERIOD = PERIOD
ELSE
YEAR NOT EQUAL P.YEAR AND P.PERIOD NOT EQUEAL PERIOD
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top