How to use the DLookup Function to Look Up a Value from a Table or Query in Microsoft Access.

Поділитися
Вставка
  • Опубліковано 14 січ 2025

КОМЕНТАРІ • 56

  • @Iloveswedes
    @Iloveswedes 2 роки тому +4

    You have been the foundational mentor for helping build a database for my department. Thank you so much for everything!

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

      You're very welcome. :)

  • @patrickwachira
    @patrickwachira 2 роки тому +2

    This is one of the best and clear lessons on access I’ve ever found

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

      Wow, thanks!

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

    Richard you are my absolute "Go To"!!!! Thank you.

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

      Rock on!

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

    You are just so clear in your . It's PERFECT !!!

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

      Thank you! 😊

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

    thumbs up as always. thanks a lot Richard for another valuable tutorials

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

    Thanks Mr. Lost For this one to, I always feel Better when i watch your Videos

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

      You're welcome. - Mr. Rost

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

    I am already a gold member applied through website now how can i see extended cut videos in youtube please inform

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

      If you signed up on my website you can only watch extended cut videos there. I have no control over UA-cam memberships.

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

    Thanks for sharing, Richard. At work I am hamstrung by our IT Dept because it refuses to allow macros or VBA to be used out of virusphobia (that word doesn't exist...). Consequently, I can't take my db to the level I want to. If functions like DLookup can help me get more functionality, it will help. Live long and prosper.

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

      Yeah... there's nothing worse than overzealous IT guys... I hate that. My entire Expert series teaches you all kinds of cool stuff without macros or VBA. 599cd.com/Expert

  • @NoOne-wm8ui
    @NoOne-wm8ui Рік тому

    Hi i have been watching your tutorial, How can i use a relational combo box to filter data that is a lookup field of two tables?

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

      599cd.com/ask - need more info

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

    Thank You for the Video. I have a question. Let's say you picked the wrong sale rep and want to choose someone else. I do you make the phone number appear without having to refresh the whole page. Thank you very much

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

      It should update when you pick the new sales rep.

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

    how do i change the fuel levy on our data base invoices?

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

      I have absolutely no idea what you're talking about sorry.

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

    I just got hired at a small ink and toner shop. On my first day they showed me a call list folder of customer we can call to see if they need any printer supplies. That desktop folder contained 30 different excel files dating back to 2016. (When the company started) I thought why isn’t that complied into a data base? And since I had beginner level knowledge of access, and found that the company had access on their computer I thought I’d create the needed database. This is when I found your videos to expand my knowledge of access.
    The point: I have my costumerT and I have an isActiveQ. I have my custF based on the isActiveQ because I only want to see the the active people that we sell to. In this video you say not to base forms on queries. Is there a way to tell the form to only show me the active customers if I base the form on the table instead?

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

      599cd.com/QQ

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

    how will i save the dlook up values into a table?

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

      With an event. 599cd.com/QQ

  • @DavidWilliams-wj4sc
    @DavidWilliams-wj4sc 2 роки тому

    WHy do you have to store info in "CustomerT"? And what would you actually be storing?

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

      You store customer info in a customer table.

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

    Am able to do Dlookup but the values are not being saved on table, what am I doing wrong

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

      Is the control bound to a field in a table?

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

    Just a quick query, can you do a dlookup based on several different fields which have been concatenated into one text box?
    Many thanks
    Chris

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

      I suppose it's possible, but that sounds messy.

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

    Can we check repeat cell under same table of access like for e.g i want to put an extra column where looking at one entire field of one table access can show me repeat in that extra made colomn?

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

      599cd.com/ask

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

    The problem I have with form, subform relationship each based on one table is when new entries are made and the user clicks back and forth between the two it will often give errors especially when it runs a validation module. I try to train (and make msgbox pop up telling them what to do) the users to go to form data first then go to subform data but the same form built on a query doesn't have that problem. I try requery on got focus or lost focus but that doesn't solve the issue. There's probably a simple solution to this problem but this is why I have built off queries instead of one table form/subform.

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

    I realy like this video it works with me. but I have small propelm, I put it in split form it works fine, but I could not filter if I have Unbound textbox

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

      Don't use split forms. They're evil. 599cd.com/evil

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

    The current way I "autopopulate" customer details in my service forms is to make an invisible combo box with a query with the fields I want to fill, then use the on load event with the following code
    me!Field.Value = me!Combo.Column(0)
    me!Field2.Value = me!Combo.Column(1)
    And so on
    I did it this way since I didn't know Dlookup was a thing, should I change it?

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

      Well, I've always been of the mindset "if it ain't broke, don't fix it," but you may find DLookup will improve your performance. PLUS, you can't use combo box columns for things like Long Text fields (memos).

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

    I need to create an accounting in ms access....can I join to tech help...thanks

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

      Yes you can: 599cd.com/TH

  • @حسنمعصومی-ز5و
    @حسنمعصومی-ز5و 10 місяців тому

    I want to enter the monthly performance of the personnel in Access every month, of course, by uploading the Excel file, but I want the performance of each month to be in exactly one column and by using the personnel code, the performance of each person should be placed in front of him. Please use the combo box to select the month of performance. Thankful

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

      599cd.com/Ask

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

    Hello sir, thanks for the content you share, they are very helpful.
    A small question please, I'm trying to create a custom report where I get from queries only totals (sum) into a single field and not a list. I'm trying to view after cross tab VAT and Month to view Gross_SUM per month and VAT percentage. I get the results successfully, although I try to extract a specific value sum from the table, but it won't happen, and I don't know why. I mean, I want to view 19% VAT from the different VATs corresponding to a month like January.
    They are shown in the cross tab query, but I don't know how to extract that specific value from the query.
    I hope someone can help me.
    Your help is extremely appreciated

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

      Post your question in my Forum: 599cd.com/AF

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

    Po pierwsze dziękuję za dużą bazę wiedzy, z której można korzystać i Twój wkład w naukę Access.
    Niestety nie mogę nigdzie znaleźć odpowiedzi na moje pytanie, więc może Ty pomożesz. Na przykład dziewczyny po ślubie zmieniają nazwiska, w związku z tym mam osobną tabelę z nazwiskami pracowników i datą zmiany. Jak stworzyć kwerendę która dla danej daty dobierze sobie pasujące na ten dzień nazwisko. W Excel jest funkcja wyszukująca z dopasowaniem przybliżonym, a Access uparcie podaje mi zwielokrotnione wyniki z każdym nazwiskiem.
    Da się to zrobić, a może muszę przeprojektować bazę? Bardzo proszę o pomoc. Tego typu historyczne dane, są z punktu widzenia HR istotne i w mojej pracy bardzo potrzebne.
    Pozdrowienia z Polski 😄

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

      Check this out: 599cd.com/VLookupInAccess

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

    What I want to find Lastname and firstname where lastname is lastname and firstname is firstname.

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

      This makes absolutely no sense whatsoever. I'm sorry. Can you please be more specific?

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

    So DLOOKUP essentially saves you the trouble of creating a million little queries for one-off uses?

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

      Pretty much, yeah.

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

    How to make inventory management in access in which sample adds, in stock&issue from stock only this type of column available. No purchase and sale in it. How to make and which formulas will be used to make like this type of inventory software.

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

      599cd.com/Inventory

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

    If I know the value I need is in the combobox list column, I use Me.ComboBox1.Column(2)