Excel Tracker Help

CMcCormack1

New Member
Joined
Feb 24, 2023
Messages
4
Office Version
  1. 365
Platform
  1. Windows
Hi All,

We currently have our Knowledge Base tracker on a excel spreadsheet, The Column Titles are: Status, Doc #, Doc Name, Collection, Category, Author, Last Reviewed Date, Review Period (Days), Next Review Date.

Currently we have the LRD + RP to = the NRD.

What i am thinking is if the Status column could change from Reviewed to To Review once it breaches the Next Review Date automatically and unhides the row so we only see the ones that need to be reviewed rather than 200+ rows of data, or puts them in a different sheet on the spreadsheet named to review or something along those lines?

Any help is appreciated.
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Considering that Next Review date expires today, use this table in a xslm. file and insert the next code. Then, click in any cell of the file and the rows indicated by Reviewed are hidden automatically. P.S. Last review date is picked up in this example for just one item. If are more ones, you need to adjust formula depending on the indicative cells for each one of them.
Review.xlsm
ABCDEFGHI
1StatusDoc #Doc NameCollectionCategoryAuthorLast Reviewed DateReview Period (Days)Next Review Date
2Reviewed15/07/2023116/07/2023
3Reviewed16/07/2023218/07/2023
4To review18/07/2023321/07/2023
5To review21/07/2023425/07/2023
6To review25/07/2023530/07/2023
Sheet1
Cell Formulas
RangeFormula
A2:A3A2=IF(G2<=TODAY(), "Reviewed","To review")
A4:A6A4=IF(G4=TODAY(), "Reviewed","To review")
G3:G6G3=I2
I2:I6I2=G2+H2

VBA Code:
Private Sub Worksheet_calculate()

    Application.EnableEvents = False
    Set Rng = Intersect(UsedRange, Range("A:A"))

 If Rng Is Nothing Then GoTo ExitHere

    For Each i In Rng

        If i.Value = "Reviewed" Then
            Rows(i.Row).EntireRow.Hidden = True
        Else
            Rows(i.Row).EntireRow.Hidden = False
        End If
    Next i

ExitHere:

    Application.EnableEvents = True
    Exit Sub

End Sub
 
Last edited:
Upvote 0
Hi All,

We currently have our Knowledge Base tracker on a excel spreadsheet, The Column Titles are: Status, Doc #, Doc Name, Collection, Category, Author, Last Reviewed Date, Review Period (Days), Next Review Date.

Currently we have the LRD + RP to = the NRD.

What i am thinking is if the Status column could change from Reviewed to To Review once it breaches the Next Review Date automatically and unhides the row so we only see the ones that need to be reviewed rather than 200+ rows of data, or puts them in a different sheet on the spreadsheet named to review or something along those lines?

Any help is appreciated.
I made a small rectification in formulas, regarding the status vs. period.

Book2.xlsm
ABCDEFGHI
1StatusDoc #Doc NameCollectionCategoryAuthorLast Reviewed DateReview Period (Days)Next Review Date
2Reviewed7/15/202317/16/2023
3Reviewed7/16/202327/18/2023
4Reviewed7/18/202337/21/2023
5To review7/21/202347/25/2023
6To review7/25/202357/30/2023
Sheet1
Cell Formulas
RangeFormula
A2:A6A2=IF(G2<=TODAY(),"Reviewed","To review")
G3:G6G3=I2
I2:I6I2=G2+H2
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,239
Messages
6,123,818
Members
449,127
Latest member
Cyko

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