I have two rows in Excel and following command:
IF(COUNT(H2:U2)>0;SUMPRODUCT(H2:U2;H1:U1)/SUM(H1:U1);"")
Now I only want to divide by the sum of those numbers in line 1, if the row below has an actual value. So if J2 has no value for example, I only want to devide the SUMPRODUCT by H1 till U1 without J1.
Is there any nice way to do that?