0
How do I use the SUM function for a period specified in the parameter?
For example:
SUM(Relatorio.Faturamento, DATE(2015,01,01) to {?DataFinal})
0
How do I use the SUM function for a period specified in the parameter?
For example:
SUM(Relatorio.Faturamento, DATE(2015,01,01) to {?DataFinal})
1
A solution may be :
Create a formula f_soma In the rule
If [Relatorio.data] >= DATE(2015,01,01) and Relatorio.data <= {?DataFinal}) Then
Relatorio.Faturamento
Else
0
In the report use the formula f_soma as aggregator
Browser other questions tagged crystal-reports
You are not signed in. Login or sign up in order to post.
That’s exactly what I needed. I made the formula based on what I answered and made a summary based on it. !
– Cassio Milanelo
Formula in CR does not make dinner but heats up in the microwave ... :)
– Motta
Beeeeeemmm out there! Hahaha
– Cassio Milanelo