Recent content by Edgarr8

  1. E

    Default on Bound text Box

    oh, I get it, so my question would be how can i populate and existing blank record with a default date?
  2. E

    Default on Bound text Box

    Hi guys, I am trying to set a default date on a text box that is bound to a table. Is there any way I can get that to defaul to todays Date if its blank? i tried setting the defauls in the default value in properties but it comes back blank.
  3. E

    Mix Max and Average

    Like you said as long as I dont have 2 numbers with the same amount of days it works by doing two different queries, one for max and one for min to get my ID. SO thank you it works for now.
  4. E

    Mix Max and Average

    Oh so i can do that, but how can i create a query that will show me the max # and also the recordrelated to it? Im thinking i should have a where clause or a join or something like that?
  5. E

    Mix Max and Average

    Hi guys, I have a query with the followinf information ID Days 1 4 2 10 3 16 4 12 5 7 6 10 7 20 I would like to create a report that shows me the max and its related ID, the Min and its related ID and just the Average, how can i do that?? I have a feeling...
  6. E

    Update text box with control source

    Hi guys, I have a form which has a summary or information I want. Ranch, Irrigation Date, Irrigated Hours, Gallons Per Minute, etc. From this FORM i created a sub form, that list all the blocks in that ranch and adds the data already in the first form. I figured i could set me textbook to...
  7. E

    Query Join Properties and Filtering

    Thank you! It worked I'm so grateful for this forum!
  8. E

    Query Join Properties and Filtering

    Hi, Background: I have 2 tables, One of them has a list of APN's and its description and the other table has the information about period when those APN's have been paid and what kind of tax it was. Ex: APN Table: APN, County, Owner,Acres 123 Fresno Juan 10 546 Tulare Bob 20 879...
  9. E

    Breaking up odd numbers

    banana you have been a great help, thank you.
  10. E

    Breaking up odd numbers

    well actually its not in a table its in a query, let me show you all i need to do with it... I have a formula in excel that I am using to come up with the check digit in excel like this: =MOD(10 - MOD( SUMPRODUCT(MID(A2, {1,2,3,4,5,6,7,8,9,10,11,12,13}, 1) * {3,1,3,1,3,1,3,1,3,1,3,1,3}), 10)...
  11. E

    4 character numbers

    You open like 1000 doors for me with that, like something cliked..haha this is what i did to be able to get it in the query without having to go into the code stuff NewID: [Company Prefix] & String((4-Len([ID])),"0") & [ID] Thank you!
  12. E

    4 character numbers

    Thank you that does give me an idea where to go...
  13. E

    Breaking up odd numbers

    Im sorry, but how am i suppose to use that in a query? or even in my table design?
  14. E

    4 character numbers

    Hello, I have an autonumber i would like to store as a 4 character number For example Autonumber [ID] 1 make it 0001 I tried changing the format to "0000" but when i do that and then try to use the Autonumber column i lose all my 000 for example if i want to add 084567 to that id i would use...
  15. E

    Breaking up odd numbers

    Hey, I am trying to separate all the characters in the odd number positions. for example i have 2001234567890 and i want to retrieve 2,0,2,4,6,8,0 I been trying to use mid, but i can only get 1 at a time, any ideas?
Back
Top Bottom