I'm trying to to sum values from the 'Value' column for a particular 'Reference number., but only if a third column ('Confirmation number') has a value. The actual value in the third column is not relevant, just whether it's been completed (confirmed) or not.
I've got as far as this
=SUMIFS(Value:Value, [Reference number]:[Reference number], "1659000166", [Confirmation number]:[Confirmation number], <>NULL)
The <>NULL is a guess to try to show what I would like to achieve.
Any ideas how I could do this?