<aside> <img src="/icons/golf_yellow.svg" alt="/icons/golf_yellow.svg" width="40px" />

M A T C H E S


Matches DB

</aside>

<aside> <img src="/icons/groups_yellow.svg" alt="/icons/groups_yellow.svg" width="40px" />

T E A M S


Teams DB

</aside>

<aside>

:heart_wishlist_planswer: S U P P O R T P L A N S W E R L A B


If you find this helpful and would like to support more free content like this, you can do so via my ☕ BuyMeACoffee page:

default-yellow.png

</aside>

/*Last home match formula*/

let(
			matchesplayedhome,
			prop("Matches Played").filter(current.prop("Date").empty().not()).
			sort(current.prop("Date")).reverse().filter(current.prop("Venue")=="Home"),
			
			matchesplayedhome.at(0).prop("Date")
			
	  )
	
	
/*Last away match formula*/

let(
			matchesplayedaway,
			prop("Matches Played").filter(current.prop("Date").empty().not()).
			sort(current.prop("Date")).reverse().filter(current.prop("Venue")=="Away"),
			
			matchesplayedaway.at(0).prop("Date")
			
	  )
	
	

<aside> <img src="/icons/info-alternate_yellow.svg" alt="/icons/info-alternate_yellow.svg" width="40px" />

This example is intended for personal/educational use only and may not be copied, shared, or distributed, in whole or in part, for any commercial purposes. All rights reserved by Planswer Lab.

</aside>