Search results

  1. W

    dcount in report

    Im not sure I know what you mean...
  2. W

    dcount in report

    So just for kicks I removed the parameter input from the query and tried and everything works fine. Am I attempting the impossible by generating a report based on a query that requires the user to enter a parameter and trying to count the unique values?
  3. W

    dcount in report

    I tried most of the variants for bracket and quotes as I was not sure either. =DCount("[VisionProNo]","qryDeliveryReport") #error
  4. W

    dcount in report

    I just double checked. I do have the spelling correct.
  5. W

    dcount in report

    Hi, I've been reading about dcount for a while now and I cant seem to find a solution to my issues. I have a report ,rptdeliveryreport, that uses a query ,qrydeliveryreport, to filter on user input dates. I have duplicate invoiceno numbers because there are multiple line items on one invoice...
  6. W

    Bing API and Access

    ugh, i cant believe i forgot to turn reference microsoft xml Thanks!
  7. W

    Bing API and Access

    Hi, I have an excel document that uses the bing API to pull distance for zip codes. I have VBA code Function GetDistance(sPCode As String, ePcode As String) As Double Dim t As String Dim re As XMLHTTP t = "http://dev.virtualearth.net/REST/V1/Routes/Driving?o=xml&wp.0=" & sPCode & "&wp.1=" &...
  8. W

    parameter prompt multiple times

    You mean like a search box? or lookups?
  9. W

    parameter prompt multiple times

    Hi, I have a form using a query as a control source so that is prompts the user for a parameter when they open the form. I also have a listbox that is calling the same query. The issue I am having is when I open the form it will prompt me twice to enter the same parameter...
  10. W

    Combo Box update values

    I dont think I found what I was looking for from that video. He didnt use any combo boxes.
  11. W

    Combo Box update values

    Greetings, I have a combo box linked to table shipstatus. This table has 2 columns. ShipCode and ShipName. These values are delivered, on hand, received, returned, warehouse. I have another table named manifestdetails and a column labeled shipstatus I would like to create a form where...
  12. W

    email attachment question

    Hi, I have a database that pulls images from a shared folder on our network with links. Do you know if it is possible to create a button to email the current record on a form and attach the file it references in the link? The attachment is a pdf signature. I didnt want to include the files in...
  13. W

    organizing import data for display

    this was spot on, thank you.
  14. W

    organizing import data for display

    Hi, I am receiving this file from a supplier to import as a table. The issue is I cant figure out a good way to display the info for each invoice because there are multiple rows corresponding to each invoice number. I wanted to build some type of form where I could search an invoice number and...
  15. W

    invoices with mutliple items

    Much appreciated, apologize for the wrong section. I'll take a look and see if this does the trick!
  16. W

    invoices with mutliple items

    Thanks for the speedy reply. They could search an inv.# and it would bring back all line items for said invoice. Ending data would be more like this: search inv. 11 result inv# pieces linedesc amount 11 500 nuts $20 11...
  17. W

    invoices with mutliple items

    Hi, I am importing data from a supplier. The table has many invoices included and varying items on each invoice. I need to find a way to separate each invoice with all the included items. For example: inv# pieces linedesc amount 11 500 nuts...
Back
Top Bottom