I am trying to use sumproduct function in a table. I have used it a lot and know how it operates.
In one of my columns, I have blank cells and other cells are text (like 1F25 in column A). In order to use it in sumproduct, I make two different columns aS FOLLOWS:
Column Q: =IF(H3="";"";RIGHT(H3;2)+0) this extracts 25 out of 1F25
Column S: =IF(H3="";"";LEFT(H3;1)+0) this extracts 1 out of 1F25
When I use above cells of column A in my sumproduct, it returns #Value.
I don't know how to overcome this problem.
The reason that I use IF(H3="";"") is if I don't use it, for some blank cells in A, the RIGHT(H3;2)+0 command will return ############ and I thought this is the cause of #value error message in sumproduct.
How can I solve this problem?
In one of my columns, I have blank cells and other cells are text (like 1F25 in column A). In order to use it in sumproduct, I make two different columns aS FOLLOWS:
Column Q: =IF(H3="";"";RIGHT(H3;2)+0) this extracts 25 out of 1F25
Column S: =IF(H3="";"";LEFT(H3;1)+0) this extracts 1 out of 1F25
When I use above cells of column A in my sumproduct, it returns #Value.
I don't know how to overcome this problem.
The reason that I use IF(H3="";"") is if I don't use it, for some blank cells in A, the RIGHT(H3;2)+0 command will return ############ and I thought this is the cause of #value error message in sumproduct.
How can I solve this problem?