I am using the below to calculate the "days since last contact" and it works nice. However, if the row is a parent I want to retrun blank, i.e. <>
=IF(OR(TODAY() - [Last Contact Date]10 > 0, [Last Contact Date]10 = TODAY()), TODAY() - [Last Contact Date]10, "Never")
The formula for check is a parent row is
=IF(COUNT(CHILDREN())>0, 1,0
I'm stumped as to how these two would combine.