MurdochQuill
Board Regular
- Joined
- Nov 21, 2020
- Messages
- 84
- Office Version
- 365
- Platform
- Windows
Hi all,
I'm looking to filldown my formula using a formula (if that's possible). If anyone has knowledge on how to do this it would be really helpful.
Here's the example formula I'm looking to fill down using only in cell formula. Formula works alright as is.. but instead of having it bound to a strict range, I would like it to move dynamically.
I have a global called "Maxrows" which returns the dynamic amount of rows it should be applied to.
I'm looking to filldown my formula using a formula (if that's possible). If anyone has knowledge on how to do this it would be really helpful.
Here's the example formula I'm looking to fill down using only in cell formula. Formula works alright as is.. but instead of having it bound to a strict range, I would like it to move dynamically.
I have a global called "Maxrows" which returns the dynamic amount of rows it should be applied to.
Excel Formula:
=IFERROR(IF(XLOOKUP(INT(MID(INDEX(G:G,ROW()),SEARCH(", ",INDEX(G:G,ROW()))+5,LEN(INDEX(G:G,ROW()))-SEARCH(", ",INDEX(G:G,ROW()))-10)), K:K,L:L,"",0)=0,"",XLOOKUP(INT(MID(INDEX(G:G,ROW()),SEARCH(", ",INDEX(G:G,ROW()))+5,LEN(INDEX(G:G,ROW()))-SEARCH(", ",INDEX(G:G,ROW()))-10)), K:K,L:L,"",0)),"")