Hi,
I had a formula which worked out the sumproduct large for a range of cells which excluded the highest figure.
The problem I have is that I don't want to include the value in every other column i.e C5,E5,G5 etc. Does anyone know how I might be able to edit the code to do this?
I tried the following but it returns VALUE!
Thank you in advance.
I had a formula which worked out the sumproduct large for a range of cells which excluded the highest figure.
Code:
=SUMPRODUCT(LARGE('Stableford scores Summer 2018'!B5:AG5,{2,3,4,5,6}))
The problem I have is that I don't want to include the value in every other column i.e C5,E5,G5 etc. Does anyone know how I might be able to edit the code to do this?
I tried the following but it returns VALUE!
Code:
[COLOR=#333333]=SUMPRODUCT(--(MOD(COLUMN(B5:AG5),2)=1),--(B5:AG5),[/COLOR]{2,3,4,5,6}[COLOR=#333333])[/COLOR]
Thank you in advance.