The Formula


lets(
	latest_filtered,max(map(map(prop("Month Release Notes"),current).filter(not(empty(current.prop("URL")))),
		timestamp(current.prop("Date")))),
	map(map(prop("Month Release Notes"), current).filter(timestamp(current.prop("Date"))==latest_filtered),
		current.prop("URL"))
)

Summary

The Breakdown

  1. Define the latest_filtered variable:

    This part of the formula extracts the latest date from the "Month Release Notes" where the "URL" property is not empty.

  2. Filter and map the items based on latest_filtered:

    This part of the formula retrieves the "URL" properties of the items that have the latest date.

Examples & Variations


[FF] Formula Example

[FF] Formula Example (1)

Demo

CleanShot 2024-06-05 at 11.47.16.gif