We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
First we added a new column called "DaysIncarcerated"
After finding the columns for the Arrest Date (B2) and the Release date (F2), and then applied this formula on all of the rows.
=IF(AND(F2<>"",B2<>"",F2>B2,F2-B2<5000),F2-B2,0)
The formula sums up all rows that meet the following conditions:
Everything else is given a value of 0.
We then copied and pasted the values of the "DaysIncarcerated" column. Next, we did a "Find and Replace" to make sure that any "#VALUE!" was removed.