BobtBuilder
New Member
- Joined
- Sep 1, 2023
- Messages
- 45
- Office Version
- 365
- Platform
- Windows
I have been trying to figure out how to go about this.
I have a formula
=TAKE(FILTER(INDIRECT("'" & I11 & "'!K2:K" & (MATCH(9.99999999999999E+307, INDIRECT("'" & I11 & "'!K:K")) + 1)), (INDIRECT("'" & I11 & "'!A2:A" & (MATCH(9.99999999999999E+307, INDIRECT("'" & I11 & "'!A:A")) + 1)) <= TODAY()) * (INDIRECT("'" & I11 & "'!A2:A" & (MATCH(9.99999999999999E+307, INDIRECT("'" & I11 & "'!A:A")) + 1)) <> "")),-1)
that i need to copy to a new cell in my vba code, but i need to change I11 to the new cell, always will be "I" but the row will change. Have tried "I" & row(), but it does not work, gives me a name error
Any ideas?
I have a formula
=TAKE(FILTER(INDIRECT("'" & I11 & "'!K2:K" & (MATCH(9.99999999999999E+307, INDIRECT("'" & I11 & "'!K:K")) + 1)), (INDIRECT("'" & I11 & "'!A2:A" & (MATCH(9.99999999999999E+307, INDIRECT("'" & I11 & "'!A:A")) + 1)) <= TODAY()) * (INDIRECT("'" & I11 & "'!A2:A" & (MATCH(9.99999999999999E+307, INDIRECT("'" & I11 & "'!A:A")) + 1)) <> "")),-1)
that i need to copy to a new cell in my vba code, but i need to change I11 to the new cell, always will be "I" but the row will change. Have tried "I" & row(), but it does not work, gives me a name error
Any ideas?