I have a report that shows the rent that is effective as of a given date. Now i want to show the charges that will be effective in a give range by the operator.
My current record selection formula is:
{PMN_TENANT__TENANT_ADDRESS.Tenant_Address_Type} = "Mailing" and
{PML_LEASE__LEASE_RECURRING_CHG_LOG.Effective_Date} <= {?Effective Date} and
{PMP_PROPERTY__PROPERTY_ADDRESS.Prop_Addr_Type} = "Street" and
{PML_LEASE__LEASE.Status} = "Current" and
if {?Lease ID} <> "" then {PML_LEASE__LEASE.Lease}={?Lease ID}
else True
Group selection formula is:
{PML_LEASE__LEASE_RECURRING_CHG_LOG.Effective_Date}=maximum({PML_LEASE__LEASE_RECURRING_CHG_LOG.Effective_Date},{PML_LEASE__LEASE_RECURRING_CHG_LOG.Charge_Type})
does any one know the name of the function i might have to use instead of maximum?
Additionally i want to be able to reprint the charges in multiple section for a given date. i.e lets say the rent period is Aug-Dec, so one section will show all charges that fall in that period but if there is an increase in October then it will show the increase amount in the section below along with the other charges for that period as well. Can this be done?
Thanks
My current record selection formula is:
{PMN_TENANT__TENANT_ADDRESS.Tenant_Address_Type} = "Mailing" and
{PML_LEASE__LEASE_RECURRING_CHG_LOG.Effective_Date} <= {?Effective Date} and
{PMP_PROPERTY__PROPERTY_ADDRESS.Prop_Addr_Type} = "Street" and
{PML_LEASE__LEASE.Status} = "Current" and
if {?Lease ID} <> "" then {PML_LEASE__LEASE.Lease}={?Lease ID}
else True
Group selection formula is:
{PML_LEASE__LEASE_RECURRING_CHG_LOG.Effective_Date}=maximum({PML_LEASE__LEASE_RECURRING_CHG_LOG.Effective_Date},{PML_LEASE__LEASE_RECURRING_CHG_LOG.Charge_Type})
does any one know the name of the function i might have to use instead of maximum?
Additionally i want to be able to reprint the charges in multiple section for a given date. i.e lets say the rent period is Aug-Dec, so one section will show all charges that fall in that period but if there is an increase in October then it will show the increase amount in the section below along with the other charges for that period as well. Can this be done?
Thanks