I'm trying to write a formula that says if one cell is less than 30% of another cell, then note the status as "At Risk."
=IF(AND([Percent Complete]@row < [Timeline Progress]@row, [Percent Complete]@row = [Timeline Progress]@row * 0.3) / 1, "At Risk", "No Value")