I have the following formula:
currencyVar CumulativeSales;
if {Po_noteExtensionBase.Po_EffectiveDate} >= DateTime({?BeginingDataRange}) then
(
if {Po_noteExtensionBase.Po_EffectiveDate} <= {?EndingDateRange} then
(
if isnull({Po_noteExtensionBase.Po_RenewalNote}) then (
CumulativeSales := {Po_noteExtensionBase.Po_NoteValue};
)));
CumulativeSales
When I try to save it I get the error of 'A date is required here' and it highlights the {?BeginingDataRange} field. This field is a date/time field which is being fulled by the user when the report starts.
What am I missing?
Thanks!