Search results

  1. khawar

    Accumulated Begning Balance In Report

    Ammended sample is attached
  2. khawar

    Accumulated Begning Balance In Report

    Can you upload your sample database
  3. khawar

    Accumulated Begning Balance In Report

    you can not get data from query on which ledger is based because it doesnot have the opening transactions it is filtered to show transactions which are between ledger period
  4. khawar

    Accumulated Begning Balance In Report

    Yes you can just replace the name of query with the table name
  5. khawar

    append data and modify own table

    you can use a update query or sql statement to update table
  6. khawar

    help with comb box

    You have to make only one combo and set form view as continous or datasheet then you can add as many records as required
  7. khawar

    help with comb box

    Can you explain in detail what are you trying to do
  8. khawar

    Relationships and those Plus Symbols

    You can creat it your self open the table in design view go to table properties set property sub data sheet there you have to set the master and child fields there
  9. khawar

    help with comb box

    change the control source of second combo
  10. khawar

    Accumulated Begning Balance In Report

    Its a union query in access it cannot be viewed in design view However here is a quick sample for you using Dsum
  11. khawar

    Accumulated Begning Balance In Report

    You can use dsum or a query to get previous balance Take a look at my sample database Sample Accounting Application It has a report which shows opening balance as per date selected
  12. khawar

    Grouping from several comparisons

    Creat a seperate table for features and assign groups to them
  13. khawar

    listVIEW issue

    you can change the sql statement used for filling the list view to incorporate this
  14. khawar

    listVIEW issue

    Sample is attached
  15. khawar

    listVIEW issue

    Assuming the name of your list view is ListView1 and name of textBox is TextBox1 Code will be as follows To get the data in first column TextBox1 = ListView1.SelectedItem To get the data in Second column TextBox1 = ListView1.SelectedItem.ListSubItems(1) In your as visible in picture...
  16. khawar

    How can I Link / Relate two tables using partial word match?

    What partial characters you want to match
  17. khawar

    Help me in Growth rate query.. Urgent!!!

    Attached is a quick sample for you There are two queries in database first one calculates year,month of year,week of month, day of week and second (ComparisonWithLastYear) shows you the results as required by you by getting amount for last year and calculation growth rate
  18. khawar

    Calculations with many-to-many relationship

    I cant guess I have to see whats happenings
  19. khawar

    Calculations with many-to-many relationship

    you can check your self where the code breaks by stepping into the code and by the way how many assets and customers you have in database
  20. khawar

    Calculations with many-to-many relationship

    what is the size of file
Back
Top Bottom