+ Reply to Thread
Results 1 to 5 of 5

view date that i enter before

Hybrid View

  1. #1
    Registered User
    Join Date
    03-26-2013
    Location
    egypt
    MS-Off Ver
    Excel 2007
    Posts
    61

    view date that i enter before

    one problem,
    i have tow sheets, sheet1 is data sheet and sheet2 is invoice sheet, in sheet2 i make insert view button
    i want when i enter invoice number and clicking on view button show my invoice contents in the blue cells
    Attached Files Attached Files

  2. #2
    Forum Contributor
    Join Date
    03-28-2013
    Location
    *
    MS-Off Ver
    Excel 2010
    Posts
    226

    Re: view date that i enter before

    Private Sub CommandButton1_Click()
        Dim sFind As String
        Dim rng As Range
        Dim wsht As Worksheet
        Dim wsht2 As Worksheet
        Dim a
        Set wsht = Worksheets("Sheet1")
        Set wsht2 = Worksheets("Sheet2")
        sFind = wsht2.Range("d2")
        Set rng = wsht.Cells.Find(What:=sFind, After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _
            xlPart, SearchOrder:=xlByRows, SearchDirection:=xlPrevious, MatchCase:=False _
            , SearchFormat:=False)
        If Not rng Is Nothing Then
           a = rng.Row
           wsht2.Range("a5").Value = wsht.Range("e" & a).Value
           wsht2.Range("b5").Value = wsht.Range("f" & a).Value
           wsht2.Range("c5").Value = wsht.Range("g" & a).Value
           wsht2.Range("d5").Value = wsht.Range("h" & a).Value
           wsht2.Range("e5").Value = wsht.Range("i" & a).Value
           wsht2.Range("f5").Value = wsht.Range("j" & a).Value
       End If
    End Sub
    Give Feedback and Click(*)

  3. #3
    Registered User
    Join Date
    03-26-2013
    Location
    egypt
    MS-Off Ver
    Excel 2007
    Posts
    61

    Re: view date that i enter before

    thank you,
    but still not working i think you miss some point in the code

  4. #4
    Forum Contributor
    Join Date
    03-28-2013
    Location
    *
    MS-Off Ver
    Excel 2010
    Posts
    226

    Re: view date that i enter before

    can you tell where the code is not working?

  5. #5
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: view date that i enter before

    Appears to be a duplicate Thread.

    http://www.excelforum.com/excel-prog...tion-data.html
    John

    If you have issues with Code I've provided, I appreciate your feedback.

    In the event Code provided resolves your issue, please mark your Thread as SOLVED.

    If you're satisfied by any members response to your issue please use the star icon at the lower left of their post.

+ 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. Replies: 4
    Last Post: 05-01-2013, 07:38 PM
  2. [SOLVED] Powerpoint Macro for Pressing "Enter" Key after Commas in First Slide in Normal View
    By mlexcelhelpforum in forum PowerPoint Programming
    Replies: 1
    Last Post: 08-02-2012, 04:09 AM
  3. Can't view date
    By Little Master in forum Excel General
    Replies: 3
    Last Post: 04-30-2009, 06:06 AM
  4. [SOLVED] Cannot view cell content until I press enter
    By AnisKhan in forum Excel General
    Replies: 4
    Last Post: 06-09-2006, 01:10 PM
  5. Replies: 2
    Last Post: 03-10-2006, 04:45 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