Recent content by Sarma

  1. S

    Generate numbers with fixed interval

    JHB: You have created the Table [tblMinMax]. This should be the input. You have created another table tblNumbers]. Where from this table come from ? This should be the outcome of a query but not a table because I do not want to create this table. I want to get it as an output of a query...
  2. S

    Generate numbers with fixed interval

    I don't know if I am able to clearly show my problem. I have a Table [Table 1] This contains 3 fields. [Minimum No] [Maximum No] [Increment] The data is as under: Minimum No - 12.03 Maximum No - 13.12 Increment - 0.01 Now I need to create a Query [Query 1] This query should have a field...
  3. S

    Generate numbers with fixed interval

    There is no addition involved. I am looking for an answer as under: Query: [Numbers] Field: Number Values 12.03 12.04 12.05 etc etc 13.11
  4. S

    Generate numbers with fixed interval

    I do not have a trigger. But I will create the table which contains the minimum number, the maximum number and the uniform increment. When I click on the query, system must be able to generate the numbers in a field 'Number'. Possible ?
  5. S

    Generate numbers with fixed interval

    Thanks, friend. [Table 1]: Minimum Value - 12.01 Maximum Value - 13.11 Increment - 0.01 Answer will be in a query [Numbers]:
  6. S

    Generate numbers with fixed interval

    I have a range say 12.03 to 13.11. I need to generate all numbers falling within this range with 0.01 increment. (This increment is based on the numbers; if the numbers have 2 decimals, it should be 0.01. If the numbers have 3 decimals, the increment should be 0.001. Both the numbers will have...
  7. S

    Probability Problem

    GEMMA: Yes, the freq above and below add up to the same number i.e. the total number. But in order that both the events should happen together, simultaneously, the combined probabability would be the product of individual probabilities. I have re-arranged the numbers suitably now. First SQL...
  8. S

    Probability Problem

    Perhaps, the first SQL will result in 16 rows and 2 fields. (Item-BelowValueFreq) The second SQL will result in 16 rows and 2 fields. (Item-AboveValueFreq) The third SQL will result in 256 rows and 4 fields. (Item-BelowValueFreq-AboveValueFreq-CombinedValueFreq)
  9. S

    Probability Problem

    I think that there would be 3 SQLs in this case. The first one and the second one will limit the query 1 and query 2 to 2 columns. Third one will be made using the output from the first 2 SQLs.
  10. S

    Probability Problem

    It is necessary to have the 2nd and 3rd columns too; in the output. So that the output has the format Item-Probability below-Probability above-Combined probability,
  11. S

    Probability Problem

    I have this problem in probability that defies me and I need the help of Access experts. I have a query which provides probability of occurrences for items A,B,C,D below 5, 10, 15 and 20. Yet another query gives probability of occurrences for items A,B,C,D above 5,10,15 and 20. Now I need...
  12. S

    Cumulative Sum

    Thanks again. I was thinking of finding the highest cumulative frequency for each pair and subtract the cumulative frequency for a particular value (below the value) to get the frequency above the value. Total frequencies = freq below + freq above a value. Will do your idea also. Rgds
  13. S

    Cumulative Sum

    Plog! We got the cumulative frequencies below the buyingvalue. Can we get the same above the buying value ? Please see output 2.
  14. S

    Cumulative Sum

    You are absolutely right, plog! Absolutely brilliant and is working. Thanks, a million, my friend!
  15. S

    Cumulative Sum

    Are you able to open the excel sheet, plog ?
Back
Top Bottom