Best formula to track days

broncos347

Active Member
Joined
Feb 16, 2005
Messages
293
Office Version
  1. 365
Platform
  1. Windows
I have a tracking spreadsheet and what I am trying to do is to track those specific actions that have the label "issued" in column K. Then if they do, I'd like to be able to track the number of days the action has be open (0-10, 11-20, etc) which would be shown in columns, D, E, etc.

Can anyone advise on what would be the best formula?
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Well... I dunno about "Best," but the slimpliest is just to subtract the dates and format the result as a number.

=IF(K1="Issued", E1-D1)

If you're looking to just count 'Work Days' (i.e. the number of weekdays) then use networked days.

=IF(K2="Issued", NETWORKDAYS(D2,E2))

GL
 
Upvote 0

Forum statistics

Threads
1,224,609
Messages
6,179,879
Members
452,948
Latest member
Dupuhini

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top