Forum Discussion
riosborne
Mar 10, 2021Copper Contributor
Proximity Tracker
Hi, I'm a golfer and I'm trying to track the average distance to the hole sorted by the club. Basically, I think I need an equation that goes something like, if column S matches column H, in colu...
- Mar 10, 2021
Try this in R3:
=IFERROR(COUNTIF(tblPutts[Club on approach],S3)/COUNTIF(tblPutts[[Club on approach]:[Miss Green?]],S3),"")
Format R3 as a percentage, then fill down.
HansVogelaar
Mar 10, 2021MVP
In T3:
=IFERROR(AVERAGEIFS(tblPutts[Length],tblPutts[Club on approach],S3,tblPutts[Putt],1),"")
Fill down.
riosborne
Mar 10, 2021Copper Contributor
Thank you