The new forums will be named Coin Return (based on the most recent vote)! You can check on the status and timeline of the transition to the new forums here.
The Guiding Principles and New Rules document is now in effect.

Access Form help

Dr. FrenchensteinDr. Frenchenstein Registered User regular
edited February 2011 in Help / Advice Forum
Some background on me, i do accounting systems so i am neither an accountant, nor a programmer but dabble in both. We do budgets for the future around mid year, and it is A HASSLE. basically, my boss hasn't liked any of my alternatives, and does it in a very manual way, which causes shitloads of busy work for me.

I created an access database for this, and a form where he can select a subentity (one column) and navigate through the PL lines (another column) for that entity and see a full year of editable figures for one line item at a time. basically, what i'd like to do is somehow build a form that shows each line of the PL on the same "page" and he can edit the entire PL as he sees fit. I'd like to put in dynamic calculated fields as well, but i'd like to cross that bridge when i come to it.

Long story short, is there a way to display and edit multiple records in a form in access?

Here's my form,
AccessExample.jpg

and the underlying data:
AccessExample2.jpg

(Sorry about the whitespace, doing this quickly)
Currently, each page of the form is a row of this data. I'd like to have the periods across the top (which i can do) but have multiple rows showing, in this example, all the rows for track code 0000 on the same "page"

I know this is a convoluted request, but i've hit a wall at my expertise level, i'm trying to impart how much i've done so nobody wastes their time giving me advice i've already tried.

Dr. Frenchenstein on

Posts

  • InfidelInfidel Heretic Registered User regular
    edited February 2011
    Some background on me, i do accounting systems so i am neither an accountant, nor a programmer but dabble in both. We do budgets for the future around mid year, and it is A HASSLE. basically, my boss hasn't liked any of my alternatives, and does it in a very manual way, which causes shitloads of busy work for me.

    I created an access database for this, and a form where he can select a subentity (one column) and navigate through the PL lines (another column) for that entity and see a full year of editable figures for one line item at a time. basically, what i'd like to do is somehow build a form that shows each line of the PL on the same "page" and he can edit the entire PL as he sees fit. I'd like to put in dynamic calculated fields as well, but i'd like to cross that bridge when i come to it.

    Long story short, is there a way to display and edit multiple records in a form in access?

    Here's my form,
    AccessExample.jpg

    and the underlying data:
    AccessExample2.jpg

    (Sorry about the whitespace, doing this quickly)
    Currently, each page of the form is a row of this data. I'd like to have the periods across the top (which i can do) but have multiple rows showing, in this example, all the rows for track code 0000 on the same "page"

    I know this is a convoluted request, but i've hit a wall at my expertise level, i'm trying to impart how much i've done so nobody wastes their time giving me advice i've already tried.

    Create a query that groups by track code, then aggregates the period values? I'm assuming you're wanting a sum or something.

    Then use that as the datasource of your form instead of the table.

    Infidel on
    OrokosPA.png
  • Dr. FrenchensteinDr. Frenchenstein Registered User regular
    edited February 2011
    unfortunately, this is the level where i need my data to be. my boss tends to change say, service fees for a particular month, and then wants to see what the new YTD total would be, (row total) as well as the month total (Column total across all PL items).

    I can get a report to show what i want, but unfortunately i need it to be dynamic so my boss can make changes on the fly, which will flow into my main table so i can easily export it, and upload it into our GL program. otherwise, i'm basically back to square one.

    Also, i tried using a vlookup in excel to feed a "main" sheet from the multiple tabs by track code, but there are just too many, and the spreadsheet tends to lock up. so that's not an option either.

    Dr. Frenchenstein on
  • InfidelInfidel Heretic Registered User regular
    edited February 2011
    unfortunately, this is the level where i need my data to be. my boss tends to change say, service fees for a particular month, and then wants to see what the new YTD total would be, (row total) as well as the month total (Column total across all PL items).

    I can get a report to show what i want, but unfortunately i need it to be dynamic so my boss can make changes on the fly, which will flow into my main table so i can easily export it, and upload it into our GL program. otherwise, i'm basically back to square one.

    Also, i tried using a vlookup in excel to feed a "main" sheet, but there are just too many track codes, and the spreadsheet tends to lock up. so that's not an option either.

    I'm assuming you're not quite clear on what a query is if "dynamic" is your issue.

    You want what exactly? The data, but summed up for each track code, one row per track code?

    Infidel on
    OrokosPA.png
  • Dr. FrenchensteinDr. Frenchenstein Registered User regular
    edited February 2011
    I know what a query is, which is why i can't use it for this. I was saying, i can get a query/report to return the data i'm looking for in the format i need, but it's not dynamic, so it's useless.

    I need the form to display the base data b/c my boss makes changes at that level. I just it to be displayed differently in the form. the whole idea for this is to have something in the format he is used to seeing, but he can edit it in real time. Instead of having it in excel, editing it, and then me having to go back over everything and input it into our GL.

    Dr. Frenchenstein on
  • InfidelInfidel Heretic Registered User regular
    edited February 2011
    Ah, I get what you're after I think now.

    You want to look into a subform. You would have the main form where you can select the track code, and then a subform in datasheet view that filters based on that track code.

    You'd have a row for each entry and you'd be able to make changes directly in it. You could add totals to the main form that update later on if you wished.

    Infidel on
    OrokosPA.png
  • Dr. FrenchensteinDr. Frenchenstein Registered User regular
    edited February 2011
    ooo that sounds promising, i'll check into that.

    Dr. Frenchenstein on
Sign In or Register to comment.