Create a Search Button on your Form in Microsoft Access. Find Button. Filter, FilterOn Properties

Поділитися
Вставка
  • Опубліковано 28 лис 2024

КОМЕНТАРІ • 172

  • @ValerydeMassia
    @ValerydeMassia Рік тому +2

    WOW! You are the BEST teacher I have seen for MS Access!! Thank you so much for providing all that knowledge, clearly and for free.

  • @tastydohnut
    @tastydohnut 4 роки тому +7

    Nice one Richard. Not many people on YT can give such clear explanations on this subject like yourself. Much appreciated.

    • @599CD
      @599CD  4 роки тому +1

      Glad it was helpful! I appreciate the compliment.

  • @emilythechef
    @emilythechef 4 місяці тому

    Thanks to whoever for inventing this, and thanks to you for teaching it, Richard! Gosh, this is just what I needed.

    • @emilythechef
      @emilythechef 4 місяці тому

      I've been using a database I designed from the ground up for almost 15 years, and now someone else will be helping me do my job, and they need to use the database too, but it was made for me, and me alone. So I'm tasked with making it user-friendly (and not-destroyable) by someone who has never used Access before.
      I wish I had made this search/filter button 15 years ago, I love it!

  • @winstonchilds870
    @winstonchilds870 2 роки тому

    Thanks Richard, I have learned a great deal from your Videos. Well done, clear voice, no fluff.

    • @599CD
      @599CD  2 роки тому +1

      Great to hear!

  • @Jojosmith342
    @Jojosmith342 2 роки тому

    Richard is such a great inspiration. I love your lessons. I am sure you have helped a lot of people! Big thank you. May God always bless you !

    • @599CD
      @599CD  2 роки тому +2

      Thanks

  • @ZahidKhan-mb6oc
    @ZahidKhan-mb6oc 4 роки тому +2

    Very useful and comprehensive lesson.. Thanks Richard for your efforts to spread knowledge.

    • @599CD
      @599CD  4 роки тому +1

      My pleasure!

  • @vladimirlaurent3404
    @vladimirlaurent3404 2 роки тому

    Thank you Richard for the video. do you have one for error handling?

    • @599CD
      @599CD  2 роки тому

      I've got a TechHelp on error handling coming out soon. I cover it in detail in Developer 2 and 15. 599cd.com/ACD2

  • @NissanButuan
    @NissanButuan 4 місяці тому

    Hello Sir, How about two input box to search? in one code?

  • @cdscoys4775
    @cdscoys4775 2 роки тому +1

    Thanks very much. This works well.. until someone typed in a value which was not present in the list... Any ideas on an elegant way to deal with that?.

    • @599CD
      @599CD  2 роки тому

      Sure, ask them if they want to add it, then add it. :)

  • @billfritz6309
    @billfritz6309 2 роки тому

    Great Video. What if the field is a lookup, where the saved value is not visible?

    • @599CD
      @599CD  2 роки тому

      I get a ton of questions every day, and I don't have time to answer them all here on UA-cam. Feel free to submit your question on my website at: 599cd.com/AskYT

  • @mcmike6190
    @mcmike6190 2 роки тому

    Darn it, why didn't I find your videos when I was using Access at work! Fantastic series, I am joining. Richard, can you use the search buttons with date fields? Or would it be easier to have the date fields as text fields for easier search? Can't use a date picker though?
    Thanks!

    • @599CD
      @599CD  Рік тому +1

      Sure, you can use date fields. Just make sure to enclose date criteria in # signs.

    • @mcmike6190
      @mcmike6190 Рік тому

      @@599CD Thanks for the quick reply!

  • @MarkoftheSwamp
    @MarkoftheSwamp 4 роки тому +1

    Thank you very much Richard, this was really useful. Like your teaching style, no messing around !

    • @599CD
      @599CD  4 роки тому

      Glad you enjoyed it! I do my "messing around" in the Extended Cuts. :)

  • @ansiepretorius5948
    @ansiepretorius5948 2 роки тому

    Hi Richard, I love to watch your videos. They are so helpful. I do have a question though. I created search buttons on my form and it worked perfectly. I then had to add this form to another as a subform and now it does not work. Do I have to make changes to the VBA code to enable it again?

    • @599CD
      @599CD  2 роки тому

      Impossible to tell without seeing what you've done

    • @ansiepretorius5948
      @ansiepretorius5948 2 роки тому

      @@599CD Hi Richard, I created two forms using your VBA method to search in various fields and it worked fine on both forms when using seperately. (ResidentF with Resident information and UnitF with property info). When using the UnitF as main form showing the ResidentF as subform, the search fields does not work) VBA code on Resident Subform :
      Private Sub SearchSurnameBtn_Click()
      Dim S As String

      S = InputBox("Please enter Surname", "Surname", Surname)
      If S = "" Then Exit Sub
      Me.Filter = "Surname LIKE ""*" & S & "*"""
      Me.FilterOn = True

      End Sub
      How can I forward you a Screenshot of the combined form?

  • @enikobakonyi1843
    @enikobakonyi1843 2 роки тому

    Thank you for all your free videos, they are so useful! I was wondering if I could make a search button working just the same as in this video, but not located on the customer form, but on the main menu? So a search button on the menu form that prompts you to enter (partial or all the) last name, then first name and pull up the customer form as the search result.

    • @599CD
      @599CD  Рік тому

      Sure. That would work.

  • @rlumaban
    @rlumaban 11 місяців тому

    This is a great tutorial. When the search button results is null value and you click on the search button again, I get an Error 94: " Invalid Use of Null". Is there a code you can write to prevent the error?

    • @599CD
      @599CD  11 місяців тому

      599cd.com/Ask

  • @rexlyons3280
    @rexlyons3280 2 роки тому

    Hi Richard! Thank you very much for the videos. Any idea why I would get ma debug error with this? It’s a 4 digit ID number. The first me.filter line of code is highlighted yellow when following you tutorial. Is it because it’s a number?

    • @599CD
      @599CD  2 роки тому

      Sorry, but based on the information you've given me, I really don't have enough data to help you. Feel free to submit your question with more details (including screen shots) here: 599cd.com/UA-cam-Submit-Question

  • @Purplexis
    @Purplexis 5 місяців тому

    I am having an issue if my string reports back no data it does not just exit the form, it creates an error. Any idea what I am doing wrong?

  • @publiclips
    @publiclips 2 роки тому

    Cool video, but I need to do what it says at the beginning, I need a Search Button, this does not filter anything, just goes to the record. Some video where you do that? Tnx

    • @599CD
      @599CD  2 роки тому

      599cd.com/Search2

  • @keithbernard972
    @keithbernard972 2 роки тому

    I am using Access to track the tickets I work on from day to day. I'd like to use the find option to location the exact spelling of an office I cover. Is there a way to use the find tool to search through the locations list?

    • @599CD
      @599CD  2 роки тому

      Sorry, but based on the information you've given me, I really don't have enough data to help you. Feel free to submit your question with more details (including screen shots) here: 599cd.com/UA-cam-Submit-Question

  • @kylebobguitar
    @kylebobguitar 2 роки тому

    Thanks Richard! Question for you. How would I display a message that no results were found if a search is done and nothing matches?

    • @599CD
      @599CD  2 роки тому

      599cd.com/DCount perhaps? This would involve some coding.

  • @stephaniewhitley1613
    @stephaniewhitley1613 Рік тому

    Thanks Mr. Richard -- I have been searching for quite awhile about how to do this. One question: I'm using the filter option, but I only need my users to search on two fields, both of which are combo boxes. Is it possible to somehow in VBA change "input box" to "combo box" with all the choices they would need? Hope this makes sense and thanks in advance.

    • @599CD
      @599CD  Рік тому

      599cd.com/ask

  • @dnbtexas
    @dnbtexas 2 роки тому

    Thanks for this great video! What if the Search doesn't match anything? Is there a video of yours that goes into this?

    • @599CD
      @599CD  2 роки тому +1

      You could try a DLookup first to see if any records exist. 599cd.com/DLookup. Or you could just look at the ID on the form and see if it's Null. 599cd.com/Null.

    • @dnbtexas
      @dnbtexas 2 роки тому

      @@599CD Thanks very much for the quick reply. I appreciate the help!

  • @ansiepretorius5948
    @ansiepretorius5948 2 роки тому

    Hi Richard. Thank you for these videos. It really makes our lives better. Is it possible to create a similar search button to search for a number? When I try to use your code on a number field, I get the error message: Data type mismatch in criteria expression.

    • @599CD
      @599CD  2 роки тому +1

      Remove the quotes if it's a number

  • @LebonChiza
    @LebonChiza 3 роки тому +1

    Cool n simple video. Best method

    • @599CD
      @599CD  3 роки тому

      Glad you think so!

  • @royp2029
    @royp2029 3 роки тому +1

    In this Video when you go into Build Event the top 2 sub sections are filled in ! when I go into Build event the screen is blank apart from the option to enter the event, is this normal ?

    • @599CD
      @599CD  3 роки тому

      I can't picture what you're talking about. It's a shame you can't post screen shots here. Feel free to submit your question at 599cd.com/TH

  • @mokanis2511
    @mokanis2511 2 роки тому

    Hi Mr. Richard, once again thank you for the VBA code, it helped me a lot to be able to build a filter into my continuous form without using the filter option in the toolbar something I was looking for for a while. Thank you sir for the sharing of your knowledge. 👍✌

    • @599CD
      @599CD  2 роки тому +1

      Welcome

    • @murpmich59
      @murpmich59 Рік тому

      @@599CD Another good tool for your tool box is the OpenAI Chat. I notice Richard mention it in one of his vids. I pasted the search code in and told OpenAI to refine the code to pop-up a warning OK box and to turn off filter , and reset to record #1 if no matching records were found. Worked perfect.

  • @scubaguy1989
    @scubaguy1989 Рік тому

    When I go to build even my code builder screen doesnt look what you were working on, cant see where to type in code?
    .

  • @maryamandaraff9224
    @maryamandaraff9224 3 роки тому

    Thank you, Will this button work if it's a bigger field, such as searching for one word in a field that has a description?

    • @599CD
      @599CD  3 роки тому

      I don't see why not. Give it a try.

  • @candicesmyth9304
    @candicesmyth9304 2 роки тому

    Hi, I am wondering whether its a simple change to the code to have it search for a last name in a separate form?

    • @599CD
      @599CD  2 роки тому

      Shouldn't be that hard

  • @FreeHappiness
    @FreeHappiness 4 роки тому +1

    Hi Richard I am not able to search on form based on query with Unicode character and I wasn't able to find a solution anywhere.

    • @599CD
      @599CD  4 роки тому

      Feel free to submit this: 599cd.com/TechHelp

  • @anondodasgupta5275
    @anondodasgupta5275 2 роки тому +1

    Great videos. These have helped me a lot. I tried using the search button using VBA code. But, encountered a problem. I have stored the client name via a combo box. I have a separate table for client name and am referring to that to store values in another table using a combo box. The search button recognizes the ClientNameID as that is the one which is stored. How to overcome this?

    • @599CD
      @599CD  2 роки тому +1

      ComboBox.Column(1)

  • @MaskMajor
    @MaskMajor 11 місяців тому

    this is so useful! thank you so much!!

    • @599CD
      @599CD  10 місяців тому +1

      You're welcome

  • @SteveJones-c8d
    @SteveJones-c8d Рік тому +1

    Maybe a silly question - why is it called the "binoculars" button when the image sure looks like a magnifying glass?

    • @599CD
      @599CD  10 місяців тому

      That's above my pay grade

  • @ptaluc
    @ptaluc 2 роки тому

    Where is the free Customer Template? Can't find it here. Many thanks.

    • @599CD
      @599CD  2 роки тому

      599cd.com/Blank

  • @abiribatech
    @abiribatech Рік тому

    Please how to exit after search

  • @angiefaerie
    @angiefaerie 5 місяців тому

    Okay I'm way late to the game, but you blew my mind with double-clicking the ribbon header to hide/unhide WHAT

  • @soniadeguzman-duran2714
    @soniadeguzman-duran2714 3 роки тому

    Hi Richard, may I ask how did you make the "Main Menu" button? thank you

    • @599CD
      @599CD  3 роки тому

      See 599cd.com/Blank

  • @m.albayati5925
    @m.albayati5925 3 роки тому

    Thank you so much for all the help.

    • @599CD
      @599CD  3 роки тому +1

      You're very welcome!

  • @joemilan1301
    @joemilan1301 Рік тому

    PLEASE SIR, MAY I HAVE GET SAMPLE MS ACCESS VBA CODES FOR CREATING TWO CBO WITH SEARCH TEXT WHERE ONE CBO IS FOR MULTIPLE TABLES SELECTING AND OTHER CBO IS MULTIPLE COLUMNS OR FIELD FOR AUTO SEARCH WITH SEARCH BOX BY HELPING THE SEARCHING TERM FOR QUERY TO DISPLAYS OTHER FIELD TEXT BOXES. THANK YOU

  • @opty1015
    @opty1015 Рік тому

    i have a question when i enter the customer ID for exg it dont show the other information

  • @markdale4152
    @markdale4152 3 роки тому

    Hi Video is great. created my first search box. It worked for about 2 hours then all of a sudden it stopped work. You click on the search button and nothing happens at all?? Nothing has changed in the form, but it just stops working and no matter how many times I remove the button and redo it, i cant get it to work again?? Can't even get past the first part with the msgbox test.

    • @599CD
      @599CD  3 роки тому

      That's weird. Check: 599cd.com/Trouble

  • @johnmcgreevy5697
    @johnmcgreevy5697 2 роки тому

    What if we are searching a number? How would that change the code? Thanks.

    • @599CD
      @599CD  2 роки тому

      Don't use quotes

  • @thusharasampath4197
    @thusharasampath4197 3 роки тому

    great..!!! I think this explains cmd button well. thank you dear...

    • @599CD
      @599CD  3 роки тому +1

      You're welcome, lovey. :)

  • @yusuffsesay7331
    @yusuffsesay7331 3 роки тому

    This is really good. Thanks so much Richard.

    • @599CD
      @599CD  3 роки тому +1

      You're very welcome

  • @stephenbeswick2163
    @stephenbeswick2163 2 роки тому

    Hi great another video steve

    • @599CD
      @599CD  2 роки тому

      Thanks

  • @sebastianhaze3979
    @sebastianhaze3979 Рік тому

    I did the code & everything works perfect except when I enter data that is not in the search it takes me to the debug screen.

    • @599CD
      @599CD  10 місяців тому

      Well try it again and try it with a different database

  • @yousefalhendi2638
    @yousefalhendi2638 4 роки тому +1

    I am very interesting to fowling your lessons

    • @599CD
      @599CD  3 роки тому

      Thanks

  • @elbrujomaya
    @elbrujomaya 2 роки тому

    Can you create a button to delete it after finding a contact?

  • @erinburns-flett1509
    @erinburns-flett1509 3 роки тому

    Excellent! I very much like your videos - well paced and excellent content. Thank you so much.

    • @599CD
      @599CD  3 роки тому +1

      You're very welcome!

  • @marcodijkhof2394
    @marcodijkhof2394 3 роки тому

    Dear Richard, thank you for the video's. I learn a lot. Is it also possible when youre having more names that you display one below the other instead of moving to the next field with the arrow

    • @599CD
      @599CD  3 роки тому

      You mean a Continuous Form? 599cd.com/Continuous

    • @marcodijkhof2394
      @marcodijkhof2394 3 роки тому

      @@599CD no, not quite. I have a database of supplier item numbers sold by wholesalers. every wholesaler has linked its own article number to a supplier number. now I want to create a search bar where I enter a supplier number or the linked wholesale number and that it shows all matches one below the other in a list.

    • @599CD
      @599CD  3 роки тому

      Yeah, you could either use a continuous form in a subform OR a listbox. All depends on how you want to go about it. A subform might be easier since you can build a query and show your results that way. I cover stuff like this in my Search Seminar: 599cd.com/SearchSem

  • @rajashreenat
    @rajashreenat 3 роки тому

    I have my staff type Control F with cursor in the field to search. Works very well.

    • @599CD
      @599CD  3 роки тому

      Yep! That works too.

  • @MaitreEtherion
    @MaitreEtherion 3 роки тому

    Very interesting! Thanks :) Quick question (maybe not XD ) If I don't want to apply a filter, but reach the record like the search button did, what function I need?

    • @599CD
      @599CD  3 роки тому

      DoCmd.OpenForm with a WHERE criteria 599cd.com/ACD1

  • @AlMumayaz
    @AlMumayaz 4 роки тому

    I have a question about the possibility of extracting the names of buttons within a form, if I choose a specific form, is there an ability to extract all the names of the buttons within the form?

    • @599CD
      @599CD  4 роки тому

      Sure. You have to parse the form's Controls collection with a For Each loop. I cover For Each loops in my Access Developer 15 class, but not parsing the Forms collection, specifically. I use it for parsing selected items in a multi-select listbox, but the concept is similar. 599cd.com/?1188

  • @williamnovarese51
    @williamnovarese51 2 роки тому

    I was able to get this to search but not without opening and closing the Query. It prompts me for input for each field when I open the query. Access 7.

    • @599CD
      @599CD  2 роки тому

      Are you getting this: 599cd.com/EPV

  • @metalpuzzle2625
    @metalpuzzle2625 3 роки тому

    Why does my Access 2019 not show the first 2 private sub details as in this video ?.

    • @599CD
      @599CD  3 роки тому

      That's code from the other buttons on my form.

  • @ryanmartin697
    @ryanmartin697 3 роки тому

    Thanks so much, the tips are really useful

    • @599CD
      @599CD  3 роки тому

      Happy to hear that!

  • @allenduke4113
    @allenduke4113 3 роки тому

    How can I have a report query data based on a drop down list?

    • @599CD
      @599CD  3 роки тому

      599cd.com/FormName - just use a combo box instead of a text box

  • @quickneasy6209
    @quickneasy6209 3 роки тому

    Good day. Doing something Similar. When i click on the button i get asked for the parameter of the field I am trying to filer. Any Suggestions?

    • @599CD
      @599CD  3 роки тому

      Check your spelling.

    • @jimcarr2215
      @jimcarr2215 3 роки тому

      @@599CD I've checked spelling but it still happens. when I use msgbox s the input provided is correct. Any other suggestions?

    • @jimcarr2215
      @jimcarr2215 3 роки тому

      Never mind! If found the misplaced "space" in my expression. Works well!!! Thanks for a great video.

  • @jonahthrane812
    @jonahthrane812 Рік тому

    if the search returns no results, i dont get a blank form, i get a blank page, all fields are gone, what can i do so if the search gives no results it prompts me to try and search again?

    • @599CD
      @599CD  Рік тому

      599cd.com/ask

  • @NancyTroutman
    @NancyTroutman 3 роки тому

    What would the code be if I wanted the computer to beep if the record was not found?
    By the way, I tried to Join, but the first field which had my email address & paypal is greyed out. It says "to complete this transaction, a payment method must be added. It won't let me add it. Add credit card & Add Paypal are not greyed out, but I already have PayPal & I am not willing to give out credit card info on the web.

    • @599CD
      @599CD  3 роки тому +1

      Docmd.Beep
      I have ZERO control over billing on UA-cam. You'll have to contact their customer support. Personally, I use CashApp for web-based credit card transactions. You can load it up with money and turn it OFF when you're not using it.

  • @DS-ed1tk
    @DS-ed1tk Рік тому

    When I enter a name that does not exist, it returns an empty result. After that, if I don't clear the filter and directly press the search button, it gives an error Run-time error 94 Invalid use of null.

    • @599CD
      @599CD  Рік тому +1

      Well you can always check for those conditions before you perform the search in the button code this is just a simple video to outline the basics it's not comprehensive

  • @tchorzu
    @tchorzu 2 роки тому +1

    very works

    • @599CD
      @599CD  2 роки тому

      Very works, indeed!

  • @mustakimfaiaz
    @mustakimfaiaz 3 роки тому

    Thank you very much...

    • @599CD
      @599CD  3 роки тому

      Welcome!

  • @qlunar6621
    @qlunar6621 3 роки тому

    I want to add a scan button to a form that serves as a tool for archiving student data, I want a code for the scan button, Where when I click on it, it scans documents and photos directly from access form and it automatically creates folders classified according to the student's ID, his name and department
    Can you help me or recommand me how to solve this problem..
    Many thanks

    • @599CD
      @599CD  3 роки тому

      Well, performing the scanning (from an actual scanner) is something you're going to have to do manually. I don't think Access can control the scanner. However, once the documents are files on your system, you can definitely use Access to select them, manage them, copy them to a special folder, rename them, etc. I cover this in my Imaging Seminar (for images, but works just fine for any document/file). 599cd.com/Imaging. I'm also going to be adding this very soon to my ABCD database. 599cd.com/ABCD

  • @1808arents
    @1808arents 3 роки тому

    Good video's

    • @599CD
      @599CD  3 роки тому

      Thanks

  • @GurpreetSingh-nw5xo
    @GurpreetSingh-nw5xo 4 роки тому

    hi Richard when i am trying to make a search button but it is showing me an error like invalid use of null i am confused can you please give me solution for this. i have all the records as same as you for customer form . please help me i have a poject to submit this week. thank you

    • @599CD
      @599CD  4 роки тому

      If you followed my example step-by-step and all of your spelling is correct, and all of your data types are the same, it should work. Without seeing your database it's impossible for me to know what you did wrong.

    • @GurpreetSingh-nw5xo
      @GurpreetSingh-nw5xo 3 роки тому

      @@599CD hi can you please help me to complete my database? i will be very thankful to you

    • @599CD
      @599CD  3 роки тому

      Sure. 599cd.com/Consulting

    • @Zwen63
      @Zwen63 3 роки тому

      If you do a search from a blank record, it gives this error here also. From a filled field it works great!

  • @ziping7
    @ziping7 2 роки тому

    When my search doesn't match anything my form is completely hiding and I have to click Toggle Filter to bring it back, how to avoid this. Also great job with videos

    • @ziping7
      @ziping7 2 роки тому

      Ok I got this :
      After : Me.FilterOn = True
      If Me.Recordset.RecordCount = 0 Then
      Me.FilterOn = False
      Me.Filter = ""
      End If

    • @599CD
      @599CD  2 роки тому

      Yeah, that'll work. :)

  • @nabinkhati5365
    @nabinkhati5365 3 роки тому

    Thank you

    • @599CD
      @599CD  3 роки тому

      You're welcome

  • @Murshidtv231
    @Murshidtv231 3 роки тому

    showing problem in s = inputbox(please enter..)

    • @599CD
      @599CD  3 роки тому

      I need more info to help you.

    • @susannvb
      @susannvb 3 роки тому

      @@599CD Thank you for the videos! I have definitely learned a lot. Like the previous commenter, I'm also having a problem with the input box code line. It worked when I opened the form directly from the form, but when I navigated to the form from my main menu, I received a "Run-time Error '94' - Invalid use of Null. Here is the code I input. Other than my own field name, I duplicated what I thought I saw in the video. S = InputBox("Please enter last name", "Last Name", EELastName)
      If S = "" Then Exit Sub

    • @599CD
      @599CD  3 роки тому

      What line generates the error? Are you getting it BEFORE or AFTER the InputBox pops up? If it's before, your EELastName is probably causing the problem. Wrap it in an NZ function. 599cd.com/NZ

  • @anjalim1830
    @anjalim1830 3 роки тому

    After coding when I go back to the form view and click the search button I get an error. It says "Invalid use of Null". Can you help please?

    • @599CD
      @599CD  3 роки тому

      Did you follow the steps from the video EXACTLY?

    • @anjalim1830
      @anjalim1830 3 роки тому

      @@599CD For the search button part, yes. but I worked on my table.

    • @joecarpenter1008
      @joecarpenter1008 3 роки тому +1

      I get the same error - what I was able to figure out is the error comes from the form loading a blank (new) record, if the form opens to an existing record the search button works as in the video.

  • @THECHANDUG
    @THECHANDUG 4 роки тому

    Super ❤️❤️❤️

    • @599CD
      @599CD  3 роки тому

      Thanks

  • @maudemax1
    @maudemax1 Рік тому

    For some reason this is NOT working for me - frustrating!

    • @599CD
      @599CD  Рік тому

      Sorry. Try again. Also see 599cd.com/Search2

  • @Flyboy_
    @Flyboy_ 3 роки тому

    when i click on "Build Event" and try your coding, my display came out different lol I give up!

    • @599CD
      @599CD  3 роки тому

      Well... that happens. Maybe start here: 599cd.com/IntroVBA

    • @Flyboy_
      @Flyboy_ 3 роки тому

      @@599CD thanks for the recommendation!! I'm trying to come up with a system for my small music school here and your videos have been very helpful! I'm considering joining your membership to learn more abt access and all. I'm signed up for a month free trial with microsoft access so i sort of have a deadline hahahaha I guess my question is: How much do you think i need to learn abt VBA before my trial ends to determine if access is really the system for me? =(( Thanks in advance!!

    • @599CD
      @599CD  3 роки тому

      VBA is the advanced end of Access. Make sure you understand all of the non-programming concepts first! Start with my free Beginner 1 course and move up from there: 599cd.com/ACB1

  • @ilhansalah8085
    @ilhansalah8085 3 роки тому

    Plz make systrm hoepital in access 🥺

    • @599CD
      @599CD  3 роки тому

      Do you mean a database to run all of the aspects of a hospital? Oh... seems like a piece of cake. I'll get right on that. LOL

  • @stephenespinosa3667
    @stephenespinosa3667 3 роки тому

    It did not worked for me.😭

    • @stephenespinosa3667
      @stephenespinosa3667 3 роки тому

      HELP ME PLEASE. 😭😭😭

    • @599CD
      @599CD  3 роки тому

      Try it again. Follow my video exactly from the beginning. It'll work.

    • @stephenespinosa3667
      @stephenespinosa3667 3 роки тому

      The reason, it didn't work because mine is MS Access 2007 😭😭😭

    • @danielaimperial9821
      @danielaimperial9821 3 роки тому

      @@stephenespinosa3667 it works even if it's Access 2007. There will be a difference between the 2010 version and above but it works well starting from 2007 version.

  • @sajalmalik6133
    @sajalmalik6133 3 роки тому

    🌸🌸🌸

    • @599CD
      @599CD  3 роки тому

      Thanks? :)

  • @qadeerkhan2765
    @qadeerkhan2765 2 роки тому

    A1

    • @599CD
      @599CD  2 роки тому

      Thanks

  • @husseinmallah1719
    @husseinmallah1719 2 роки тому

    Your instructions helped a lot; I am trying to do a small app for Members and their payments for a Veterans Non-Profit Org. I tried the Search, but I got an error "94" Invalid use of Null.
    This is the code I used
    Private Sub SearchbyLastName_Click()
    Dim S As String
    S = InputBox("Please Enter Last Name", "Last Name", LastName)
    If S = "" Then Exit Sub
    Me.Filter = "LastName LIKE ""*" & S & "*"""
    Me.FilterOn = True
    End Sub
    This error comes up after I do a search that is not available.

    • @599CD
      @599CD  2 роки тому

      You shouldn't get that... just an empty form.