January 9, 201214 yr I'm trying to display the premium amount for the past 3 years in a list on the current record. I need help figuring out how to do this... I can show the date field for the current year, and the premium field for the current premium, but how do i set up the date field to be 1 year back and connect it to the premium so it shows that premium amount? Any help greatly appreciated. Matt
January 9, 201214 yr Create a global calculation field ThreeYrAgo = Date( Month(Get(Current Date)); Month(Get(Current Date)); Year(Get(CurrentDate) - 3) ; result is Date and set to unstored. Create a new Table Occurrence of your table and relate it to the original table by MyOrigTable::ThreeYrAgo < MyNewTO::Date Create a portal showing records from MyNewTO and place the fields MyNewTO::Date and MyNewTO::PremiumAmount
January 9, 201214 yr Create a global calculation field ThreeYrAgo = Date( Month(Get(CurrentxDate)); Day Month(Get(CurrentxDate)); Year(Get(CurrentDate)) - 3) ; result is Date and set to unstored. The field should be unstored; therefore it cannot be global. Edited January 9, 201214 yr by comment
Create an account or sign in to comment