<aside> 💡 Note: This is very advanced formula stuff and a little experimental!

</aside>

👋 Intro

⚠️ Warnings

Recursive version

About

Recursion involves referencing the same formula within itself! It can be use for deep computational needs, and avoid redundant iteration like above.

Notes

Get deepest relation

if(
	empty(prop("Next")),
	prop("Next"),
	let(
		nextLast,
		prop("Next").at(0).prop("Last_Recursive"),
		if(
			empty(nextLast),
			prop("Next").at(0),
			nextLast
		)
	)
)