ScottTemple
Board Regular
- Joined
- Dec 28, 2023
- Messages
- 103
- Office Version
- 365
- Platform
- Windows
Hello,
I have a spill array in tab2 of my workbook as follows:
=LET(a,CHOOSECOLS(Shaver_Data,SEQUENCE(30)),IF(a="","",a))
I have a formula in cell AX:
=(INDEX(A2#,,22)+(INDEX(A2#,,27)))
However, if either 22 or 27 is missing it's value/blank, I need to have the calculation still continue, currently it returns a #VALUE! error in the cell. I have attempted the following formula, but receive an error message:
=IF(OR(ISBLANK(INDEX(A2#,,22),ISBLANK(INDEX(A2#,,27)),"",(INDEX(A2#,,22)+(INDEX(A2#,,27)))
I have a spill array in tab2 of my workbook as follows:
=LET(a,CHOOSECOLS(Shaver_Data,SEQUENCE(30)),IF(a="","",a))
I have a formula in cell AX:
=(INDEX(A2#,,22)+(INDEX(A2#,,27)))
However, if either 22 or 27 is missing it's value/blank, I need to have the calculation still continue, currently it returns a #VALUE! error in the cell. I have attempted the following formula, but receive an error message:
=IF(OR(ISBLANK(INDEX(A2#,,22),ISBLANK(INDEX(A2#,,27)),"",(INDEX(A2#,,22)+(INDEX(A2#,,27)))