Reputation: 85
it is possible to automate time and date last modified, I have 4 text box, one is for the date have the formula @Created
and the 3 have the formula @Modified
. i want the 3 text box modified one at a time.
sorry for my English.
Upvotes: 0
Views: 350
Reputation: 489
If you're looking for Richard's solution try this:
Create a field
@Formula Put in the value property of the text field:
@Subset($Revisions; 4)
this will give you the first 4 entries. If you want to get the last 4 entries, put a minus before the number:
@Subset($Revisions; -4)
Is this what you wanted??
Upvotes: 1