Display Data

0
Hii,, I am trying to make a calculation app where when one enters the values needed, the calculated value will be displayed. However, I want to only display the newest calculated value only, without having any history (or basically displaying it on list view). Is there a way to do so? Thank you so much in advance.    
asked
1 answers
0

You simply create an attribute (decimal or integer) in your entity to store the calculated value in. Then when a user submits the values to be calculated, you change that entity's attribute to the calculated value.

answered