I'd like to find a way to clear everything in a column except for linked range formulas (like: "=sum(A3:A5)")

Currently I'm using "If cell.HasFormula = False Then cell.ClearContents"

But I'd like to also remove the data from cells that are calculated with static numbers (like: "=23598+395802+3598")

Is there a way to delete everything in a column that has static numeric data like this and maintain the linked formulas ("=A3-A5-A7")

Thank you!