Recent content by maw230

  1. M

    Append records with different field names or change field names

    Simply as a means of taking a horrible flat, text file and putting it somewhere I'm familiar with. The text file was not csv or delineated in any way, so I had to use an accompanying document to manually specify field beginning positions and lengths. Then I imported it in all of its glory and...
  2. M

    Append records with different field names or change field names

    Is there a way to match these up based on row number? This flat file contains 234 fields, so if I could say 'APPEND where record number 1 from Table A = record number 1 from Table B' it would save me a ton of time.
  3. M

    Append records with different field names or change field names

    Oh, man. One of those days. Thanks for helping me past this low point in my week :banghead: :D
  4. M

    Append records with different field names or change field names

    I tried, but I believe the field names need to be the same?
  5. M

    Append records with different field names or change field names

    Using the attached image, I want to either update all of the field names on the right table to those on the left or append the records from the table on the right to the table on the left. The fields from both tables are in the same order, but have different names. What can I do? Thanks.
  6. M

    2 copies of the same graph showing different results

    Where are the Excel gurus! My usual excel forums can't even answer this one. I don't know what I did but it's working now...
  7. M

    What event, or what code?

    So, if a change is made on the second form, the main form checkboxes update, but that update doesn't trigger the on current code to display the label? Or the checkboxes don't update?
  8. M

    2 copies of the same graph showing different results

    In the attached image I have two graphs that are based on pivot tables from the same dataset, use the exact same pivot fields, and also are based on the exact same custom chart template. In one graph, if the series for the horizontal line is all zeroes, the line will not appear - this is what i...
  9. M

    If value isn't in combobox list Then..

    Hi CJ. The Not in List event only works when Limit to List is set to Yes. I think I will need to go about this a different way.
  10. M

    If value isn't in combobox list Then..

    I must not have it configured right then. I will take another look.
  11. M

    If value isn't in combobox list Then..

    I don't think this will work as I don't want to limit to list I just want a warning to display if something isn't in the list.
  12. M

    If value isn't in combobox list Then..

    Is there a built-in property to check if the value in a combobox is in the RowSource or not? I want to show a label on my form if the value entered in the combobox isn't in the "list".
  13. M

    Store lookup values based on BETWEEN text field name

    Genius! I was just trying to reconcile how I would even create the join.. I was thinking about using a subquery in lieu of a join - that should work as well provided I can figure out the syntax, correct? I should have no overlap issues in this case, but I do appreciate you mentioning it. In...
  14. M

    Sum of calculated values on a form

    I don't really know how to solve your #Error, but I think you could create a separate query that summed the form values and then import that into the footer. You may need to requery the form after the calculated fields...calculate. If that doesn't work let us know.
  15. M

    Store lookup values based on BETWEEN text field name

    Wow, what a horrible title.. I have this cross reference table that says: For (text) codes 10021-69900 Use multiplier .15 70010-79999 use .20 0001M-0004M use .50 I want to write a query that can then reference the text codes and apply the correct multiplier. I'd like to do this without...
Top Bottom