Search results

  1. Z

    Pivot Chart Configuration won't remain static.

    I'm going to try so set all the nulls in my pivot table to zero. Maybe that will preserve my formatting.
  2. Z

    Pivot Chart Configuration won't remain static.

    Something else that may be of note. I run many charts like this, columnar charts don't suffer from this at all. Just the line graph I described above. -Thanks edit: Actually there is a similar error here as well. If I run the filter and there is a zero, or null in any of the fields...
  3. Z

    New Field that Pulls from Existing Field

    I think you mean: CurrentDb.Execute "UPDATE [TableName] SET [NewFieldName] = 'Near Miss' WHERE [ExistingFieldName] = 'Near Miss';" CurrentDb.Execute "UPDATE [TableName] SET [NewFieldName] = 'Actual Event' WHERE [ExistingFieldName] <> 'Near Miss';" But I got the picture :) THanks!
  4. Z

    New Field that Pulls from Existing Field

    What's a form? lol
  5. Z

    Pivot Chart Configuration won't remain static.

    Unfortunately I won't be able to do this as this query is ultimately based off of a table that is full of personal info. Maybe I can describe the problem better? I create a form that defaults to pivotchart view, and pull in relavant fields in form view. I use a pivot chart view to pull...
  6. Z

    New Field that Pulls from Existing Field

    Where do I put the command button?
  7. Z

    Pivot Chart Configuration won't remain static.

    Bump. This is so frustrating
  8. Z

    New Field that Pulls from Existing Field

    No I haven't And I dont plan on deleting the old field, just removing the option to select "Near Miss"
  9. Z

    New Field that Pulls from Existing Field

    No, I want to remove "Near Miss" as a selection on the entry form under that field and have a new field for it. Near Miss is currently buried in a combobox where it doesnt belong.
  10. Z

    New Field that Pulls from Existing Field

    Hi all, I want to create a new field that draws from another field in the same table. One possibility is "Near Miss" in the existing field. For every record where "Near Miss" is in the existing field, I want to have "Near Miss" in my new field. In all other cases I want "Actual Event"...
  11. Z

    Pivot Chart Configuration won't remain static.

    Hi all, I have a subform based off a query that displays data in a pivot chart. In the pivot table view, I have it set up to give me the count of records per months over time for several categories, displaying in a line graph per month. The first time I use it, it works perfectly. But...
  12. Z

    Question Export a Chart (form) , Repost

    Sorry to repost, but Im not sure where it belongs. Hi there, I have a form that filters a subform based on a query. The subform's default view is pivot table and allows me to produce charts that I want to export as picture files and eventually add into .ppt presentations. I get a type...
  13. Z

    Export a Chart (form)

    Hi there, I have a form that filters a subform based on a query. The subform's default view is pivot table and allows me to produce charts that I want to export as picture files and eventually add into .ppt presentations. I get a type Mismatch error when I hit my export button and I'm...
  14. Z

    Dependent Combo box alphabetical order

    How did the list get in alphabetical order in the first place? Right now it's correct except this one entry. Could I just delete and remake it?
  15. Z

    Dependent Combo box alphabetical order

    This list is in it's own table, and is only one field. Sorted alphabetically.
  16. Z

    Dependent Combo box alphabetical order

    I don't understand that question, but I don;t think I can use rowsource, since that field is dependent on the previous combobox. Sorry if I'm a doofus.
  17. Z

    Dependent Combo box alphabetical order

    Hi there. I have a cascading combo box based on a table of specific types of incidents. So: If you enter x into combobox A, you get list 1. Enter y into combobox A, you get list 2 and so forth. I want to update list 2, adding in a new selection. It is based on a table on the backend...
  18. Z

    Cleaning up a database?

    I built a database acouple years ago, but having had to convert it from a series of excel files to an access database. Almost all of the information is stored in a single table. Is there a simple way for me to pull apart this table into different categories? Would this help speed up the...
  19. Z

    Applying this listbox to my DB.

    THis code seems to open to a blank page. Its the correct form and shows up in design view, but the page is blank when you look at it in form view. hmm. -Z
  20. Z

    Applying this listbox to my DB.

    This seems to bring me to a completely blank form. It's the correct form when you switch to design view, but in form view is completely blank. Can't see any labels or controls or anything. -Z
Back
Top Bottom