banner



How To Get Today's Date In Excel

How to hide rows based on today's date in Excel?

Supposing you have a fruit table in a worksheet as the below screenshot shown, and you need to hide all rows before or after current date (6/14/2016) in the table. This article provides three methods for you.

Hide rows based on today's date with the Filter function
Hide rows based on today's date with VBA code
Hide rows based on today's date with Kutools for Excel


Hide rows based on today's date with the Filter function

With the Filter function in Excel, you can easily filter out all needed rows and hide all unwanted rows based on today's date.

1. In the table, please click the drop-down button on the Date column, and then click Date Filters > Before or After. See screenshot:

Notes:

1). If there has no drop-down button existing at the top of your date column, please enable the Filter by clicking Data > Filter.

2). For hiding all rows before today's date, please select the After option. Otherwise, choose the Before option. Here I need to hide all rows before today's date and keep all rows after today's date, so I select the After option.

2. In the Custom AutoFilter dialog box, click the Date Picker button next to the is after box, and then click the Today button in the calendar. And then click the OK button.

Then all rows before today's date are hidden immediately.


Hide rows based on today's date with VBA code

You can also apply VBA code to hide rows based on today's date in Excel. Please do as follows.

1. Press Alt + F11 keys simultaneously to open the Microsoft Visual Basic for Applications window.

2. In the Microsoft Visual Basic for Applications window, please click Insert > Module. Then copy and paste the following VBA code into the window.

VBA code: Hide rows based on today's date in Excel

Private Sub Hidebtn_Click()     Dim xRg As Range     Dim xTxt As String     Dim xCell As Range     On Error Resume Next     If ActiveWindow.RangeSelection.Count > 1 Then       xTxt = ActiveWindow.RangeSelection.AddressLocal     Else       xTxt = ActiveSheet.UsedRange.AddressLocal     End If     Set xRg = Application.InputBox("Please select range:", "Kutools for Excel", xTxt, , , , , 8)     If xRg Is Nothing Then Exit Sub     Application.ScreenUpdating = False     For Each xCell In xRg         If xCell.Value < Now Then             xCell.EntireRow.Hidden = True         End If     Next End Sub

3. Press the F5 key, in the popping up Kutools for Excel dialog box, select the date range column, and then click the OK button.

Now all rows before today's date are hidden immediately.

Notes:

1. < Now means all rows before today's date will be hidden after running the code. For hiding all rows after today's date, please change < Now to > Now.

2. For displaying all hidden rows, please apply the below VBA code.

VBA code: unhide all hidden rows in Excel

Private Sub Showbtn_Click() Rows.EntireRow.Hidden = False End Sub

Hide rows based on today's date with Kutools for Excel

With the Select Specific Cells utility of Kutools for Excel, you can easily select all rows before or after today's date, and then hide them manually.

Before applying Kutools for Excel, please download and install it firstly.

1. Select the date list in your table, and then click Kutools > Select > Select Specific Cells.

2. In the Select Specific Cells dialog box, select the Entire row option in the Selection type section, and select Less than or Greater than option (here I select the Less than option) in the first Specific type drop-down list, then enter today's date into the next text box. Finally click the OK button. See screenshot:

3. Then a dialog box pops up to tell you how many rows were selected, please click the OK button. And you can see all rows before today's date are selected as below screenshot shown.

4. Right click on the selection, then click Hide in the right-clicking menu to hide all selected rows before today's date.

  If you want to have a free trial ( 30-day) of this utility, please click to download it, and then go to apply the operation according above steps.


Related articles:

  • How to hide checkbox when row is hidden in Excel?
  • How to hide/unhide rows or columns with plus or minus sign in Excel?

The Best Office Productivity Tools

Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80%

  • Reuse: Quickly insert complex formulas, charts  and anything that you have used before; Encrypt Cells with password; Create Mailing List and send emails...
  • Super Formula Bar (easily edit multiple lines of text and formula); Reading Layout (easily read and edit large numbers of cells); Paste to Filtered Range...
  • Merge Cells/Rows/Columns without losing Data; Split Cells Content; Combine Duplicate Rows/Columns... Prevent Duplicate Cells; Compare Ranges...
  • Select Duplicate or Unique Rows; Select Blank Rows (all cells are empty); Super Find and Fuzzy Find in Many Workbooks; Random Select...
  • Exact Copy Multiple Cells without changing formula reference; Auto Create References to Multiple Sheets; Insert Bullets, Check Boxes and more...
  • Extract Text, Add Text, Remove by Position, Remove Space; Create and Print Paging Subtotals; Convert Between Cells Content and Comments...
  • Super Filter (save and apply filter schemes to other sheets); Advanced Sort by month/week/day, frequency and more; Special Filter by bold, italic...
  • Combine Workbooks and WorkSheets; Merge Tables based on key columns; Split Data into Multiple Sheets; Batch Convert xls, xlsx and PDF...
  • More than 300 powerful features. Supports Office/Excel 2007-2019 and 365. Supports all languages. Easy deploying in your enterprise or organization. Full features 30-day free trial. 60-day money back guarantee.

kte tab 201905


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint , Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!

officetab bottom

How To Get Today's Date In Excel

Source: https://www.extendoffice.com/documents/excel/3698-excel-hide-rows-based-on-date.html

Posted by: leedivening.blogspot.com

0 Response to "How To Get Today's Date In Excel"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel