Forum Discussion
TMFMinn1234
Mar 17, 2024Copper Contributor
SUMIFS only if a date is entered
Hello! I would like help to create a formula in column C that checks column B for a date. If there is no date listed, then nothing else is calculated, or return a value of 'not paid' If there is a...
PeterBartholomew1
Mar 18, 2024Silver Contributor
Different practices in that I avoid relative references and entire column formulas.
= IF(datePaid, SUMIFS(total, orderID, transaction), "")It is a single 365 formula that spills to the entire table.