ChristineJ
Well-known Member
- Joined
- May 18, 2009
- Messages
- 773
- Office Version
- 365
- Platform
- Windows
Cell T31 = E9, X5, A1
I am using the following formula in cell U31 to add two column letters and one row to each cell reference in T31:
It returns G10 in cell U31 - it only works for the first cell address, E9.
Can this be adjusted so that it returns G10, Z6, C2 in cell U31 --- offsetting all three cell addresses? Thanks
I am using the following formula in cell U31 to add two column letters and one row to each cell reference in T31:
Code:
=IF(T31="","",SUBSTITUTE(TEXTJOIN(", ",1,@CELL("address",OFFSET(INDIRECT(TRIM(MID(SUBSTITUTE(T31,", ",REPT(" ",LEN(T31))),@SEQUENCE(LEN(T31)-LEN(SUBSTITUTE(T31,",",""))+1,,0,LEN(T31))+1,LEN(T31)))),1,2))),"$",""))
It returns G10 in cell U31 - it only works for the first cell address, E9.
Can this be adjusted so that it returns G10, Z6, C2 in cell U31 --- offsetting all three cell addresses? Thanks