How do I convert these formulas to a column formula?
So the formulas work perfectly; however, I find myself constantly updating the source sheet when someone inserts or enters new records and then I have to go to my metrics sheet to make sure they are applied. I'm doing way too much manually work with these sheets and I want the sheets to work for me.
Below are the formulas that I have in specific columns on each of my source sheets at the row level and these same columns are updating my metrics sheet by totoal count from all of my sheets (not listed here but just wanted to explain a little more):
1. CLEARED ON TIME
=IF([# Days between date cleared & rotation start date]1 > -1, "✔", "❌")
2. # DAYS TO CLEAR STUDENT FROM START TO FINISH
=NETDAYS([Credentialing Started]1, [Date Cleared]1) - 1
3. # DAYS BETWEEN DATE CLEARED & ROTATION DATE
=NETDAYS([Date Cleared]1, [Rotation Start Date]1) + -1
What am I doing wrong? 🤔