I'm getting percentage for referrals that result in new business. For forward months (Aug-Dec) there are no referrals yet so the formula is dividing by 0. How can I adjust the formula to return nothing or a dash for those months?
This is the formula that returns the right numbers if there are successful referrals in a given month:
=IF(COUNTIFS({Status}, CONTAINS("Converted", @cell ), {Referral Date}, >=DATE(2025, 7, 1), {Referral Date}, <=DATE(2025, 7, 31)), >0) / [Column8]3
Where [Column 8]3 is total referrals. If it is zero, I want the cell to be blank or show a dash. Thanks, Lisa