Recent content by elly.khanlar

  1. E

    Receive an error in importing excel file into access

    I tried to import an excel file from external data option in access, after following importing steps, in final steps I received this error message
  2. E

    Receive an error in importing excel file into access

    Hi All, I get below message when import an excel file into the database: an error occurred trying to save import/export specification Your help is greatly appreciated!
  3. E

    looking for IFF expression in query to calculate total cost

    Thanks Gina for your response. I will try to use this format. In regards to my question for my query I ran into different problem. in my table, the volume for each material get repeated as the category lines is added for each product.should i use distinct criteria to only have one volume for...
  4. E

    looking for IFF expression in query to calculate total cost

    Where is the Forum, I tried to open the link you have copied,but can't find the post with solution related to my question. In regards to normalization, I have read about it, but I still don't understand how I have not practiced proper normalization?
  5. E

    looking for IFF expression in query to calculate total cost

    Thanks for your answer. but I need to show my data on a monthly basis but the cost will be a quarterly basis as It shows in the attached file.
  6. E

    looking for IFF expression in query to calculate total cost

    Sorry, I didn't know the policy about crossposting. I posted on two forums as I have a deadline to make for my work which is very important. that's why I couldn't wait days to post on another forum. Moving forward, I will practice crossposting. I hope someone will give me an answer as I need...
  7. E

    looking for IFF expression in query to calculate total cost

    Hi, Here is code: SELECT VolumeTblwithQuarter.Destination, VolumeTblwithQuarter.Material, VolumeTblwithQuarter.Field1, VolumeTblwithQuarter.Source, VolumeTblwithQuarter.Month, VolumeTblwithQuarter.Quarter, VolumeTblwithQuarter.Volume, [VolumeTblwithQuarter].[Volume]*[MaterialTbl].[2019...
  8. E

    looking for IFF expression in query to calculate total cost

    Hi everyone, I need to have write a formula that will calculate rate based on quarter. Here is the snapshot of 3 tables I have. I have tried to left Join VolumeTble with MaterialTble based on source and material. meaning if the material 123 is coming from Toronto take the rate from MaterialTbl...
  9. E

    Transpose coloumn to rows with UNION query

    Hi June, Thanks for your reply. It is different since I want to layer this into the existing field instead of creating a new field. Here is what I have comeup so far which is working but the "where"clause is not working SELECT Location, Product, TableABC.Category & " - Lane rate" AS...
  10. E

    Transpose coloumn to rows with UNION query

    Hi everyone, I'm trying to transpose columns to rows into some existing field, which doesn't turn out to be the result I am looking for. based on my code, the 2019 late rate or 2019 Rebate or 2019 Fee will create a new field instead of layering into the existing field called "Category". here...
  11. E

    Remove some lines from query

    yes, table b has exactly 4 fields. how about same conditions? basically, i don't want to include rows that has syrup in field 2 or field 4 has number 1 .
  12. E

    URGENT:how to fix the query must have at least one destination field error

    Thanks for your response. I got this error message again while making a select query of two tables. First 10 fields i chose in design grid are from table A, and the rest are from table B by computing with one fields from table A. I realized that I needed to change the name of one of the field...
  13. E

    Remove some lines from query

    Hi everyone, I have a make a union query which I am trying to union two tables together. In one of the tables, I don't want two things to be included in two fields in Table A that contain certain criteria. Here is my SQL which is not working and I get this error" Undefined function "Where" in...
Back
Top Bottom