+ Reply to Thread
Results 1 to 6 of 6

Update results based on the date input

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    05-25-2020
    Location
    Madurai
    MS-Off Ver
    Excel 2010
    Posts
    136

    Update results based on the date input

    Hi

    Please help to create macro for attached sample file.

    Having input data in data sheet, from that, input date given in message box if it's between meet the data available in data table, that rows needs to be copied to the result tab. Please help
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    07-20-2011
    Location
    Mysore, India.
    MS-Off Ver
    Excel 2019
    Posts
    8,710

    Re: Update results based on the date input

    Macro code

    Sub ExtarctData()
    Dim M
    Dim D1 As Date, D2 As Date, T&, Lr&, K1&, K2&, X&, N&
    Application.ScreenUpdating = False
    D1 = InputBox("Enter starting date:", "START DATE"): K1 = D1
    D2 = InputBox("Enter Ending date:", "END DATE"): K2 = D2
    Lr = Sheets("Requirement").Range("B" & Rows.Count).End(xlUp).Row
    
    M = Filter(Evaluate("transpose(if(('Requirement'!E5:E" & Lr & "<=" & K2 & ")*('Requirement'!F5:F" & Lr & ">=" & K1 & "),ROW(E5:E" & Lr & "),false))"), False, False)
    X = 5
    Sheets("Results").Range("B5").CurrentRegion.Offset(1, 0).Clear
    
    With Sheets("Requirement")
    For T = 0 To UBound(M)
    N = M(T): X = X + 1
    .Range("B" & N).Copy Sheets("Results").Range("B" & X)
    .Range("C" & N & ":H" & N).Copy Sheets("Results").Range("E" & X)
    Sheets("Results").Range("C" & X) = D1
    Sheets("Results").Range("D" & X) = D2
    Next T
    End With
    
    With Sheets("Results").Range("B5")
    .CurrentRegion.Offset(1, 0).Borders.LineStyle = xlContinuous
    End With
    Application.ScreenUpdating = True
    End Sub
    Attached Files Attached Files
    Last edited by kvsrinivasamurthy; 02-24-2023 at 12:43 PM.
    Pl note
    Array formula should be confirmed with Ctrl+Shift+Enter keys together.
    If answere is satisfactory press * to add reputation.

  3. #3
    Forum Contributor
    Join Date
    05-25-2020
    Location
    Madurai
    MS-Off Ver
    Excel 2010
    Posts
    136

    Re: Update results based on the date input

    Hi kvsrinivasamurthy

    Thanks for your help. Code is working perfectly

  4. #4
    Valued Forum Contributor
    Join Date
    08-08-2022
    Location
    Buenos Aires
    MS-Off Ver
    Excel 2019
    Posts
    1,777

    Re: Update results based on the date input

    Hello. I attached another way to do it.

    Also, I have changed the formulas in column G, incorporating the DatedIf function.

    PHP Code: 
    Sub Macro8()
    Dim Rng As Range
    Application
    .ScreenUpdating False
    With Sheets
    ("Requirement")
      
    Set Rng = .Range("H4", .Cells(Rows.Count"B").End(xlUp))
    End With
    Range
    ("E5") = "=And(" Rng(24).Address(00external:=True) & "<=$C$5, " _
      Rng
    (25).Address(00external:=True) & ">=$B$5)"
    Rng.AdvancedFilter 2Range("E4:E5"), Range("B7:H7"), False
    Range
    ("E4:E5").Clear
    With Range
    ("B7").CurrentRegion
      
    .Font.Name "Calibri": .Font.Size 14: .EntireColumn.AutoFit
    End With
    End Sub 
    Attached Files Attached Files
    You are always very welcome if you add reputation by clicking the * (bottom left) of each message that has helped you.

  5. #5
    Forum Contributor
    Join Date
    05-25-2020
    Location
    Madurai
    MS-Off Ver
    Excel 2010
    Posts
    136

    Re: Update results based on the date input

    Hi Beyond Excel
    Thanks for your help and the alternative method. Code is working perfectly as expected

  6. #6
    Forum Expert
    Join Date
    07-20-2011
    Location
    Mysore, India.
    MS-Off Ver
    Excel 2019
    Posts
    8,710

    Re: Update results based on the date input

    Thanks for feed back.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. how to return different results based on multiple input cells
    By abonomel in forum For Other Platforms(Mac, Google Docs, Mobile OS etc)
    Replies: 0
    Last Post: 10-13-2021, 04:56 PM
  2. Automatic date or text input based on other cell input
    By jafeth_b18 in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 08-01-2021, 01:29 AM
  3. [SOLVED] Generating results based on two input ranges
    By Doubleuj in forum Excel General
    Replies: 10
    Last Post: 04-05-2017, 07:07 PM
  4. Run macro when formula results changes based on different input cell
    By daggat in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 06-06-2014, 09:01 AM
  5. Input Date range to update all sheets
    By kanonathena in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-26-2013, 02:32 AM
  6. Pair down results based on input
    By pjbassdc in forum Excel General
    Replies: 6
    Last Post: 09-14-2011, 02:35 PM
  7. Formula that updates results based on a single input
    By 3dmdlr in forum Excel General
    Replies: 1
    Last Post: 01-25-2011, 12:48 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1