I just created a subform to have users upload documents. Within the subform, I created a numeric field for users to provide the document's version number. From there, I want a calculated field that would populate to indicate if the document is the most recent or not. I built the below calculation, but it seems like the "MAX" function doesn't actually pull the maximum number from all of the subform entries, so it doesn't really work.
I created a calculated field that is outside of the subform that grabs the MAX version number, but I can't actually reference that field from within the subform.
Below is the calculation:
IF([Version]=MAX([Version]),VALUEOF([Type],"Most Recent"),VALUEOF([Type],"Previous"))
- Can anyone assist with the formula?
- Is there a better way to automatically have the most recent subform entry be named "Most Recent"?