+ Reply to Thread
Results 1 to 9 of 9

UserForm Income / Expenditure Database?

Hybrid View

  1. #1
    Registered User
    Join Date
    09-08-2014
    Location
    Sydney
    MS-Off Ver
    2013
    Posts
    61

    Question UserForm Income / Expenditure Database?

    Hi guys,

    Good day. I am currently working on a new excel VBA database project where I have a userform for Income and Expenses calculations and upon hit the submit button I want the data to insert in an excel sheet named DataBase where I will have two tables for the respective Income and Expenditure.

    The brief about my project is –

    • I have created a userform to record and calculate “Expenditure and Income” of a business.
    • The userform has various expenditure types and Income types along with quantity and amount.
    • I want the data to insert (once hit the Submit button) in an Excel Sheet called DataBase (as you suggested). However I want the excel sheet to have 2 separate table as Expenditure and Income and the data should inset into the respective table.
    • I have also inserted one TextBox in the Userform as a date field where I used Today function to record current system date to the both tables?

    Can someone please help me how to achieve this? Please see attached the demo file. Also please feel free to manipulate it if you have a better idea…

    Thanks.
    Attached Files Attached Files

  2. #2
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: UserForm Income / Expenditure Database?

    Hi,

    The first question I'd ask is what are your reasons for creating two data tables. Why not create a single database which will be more flexible, particularly if you want to use a Pivot Table for any subsequent analysis.

    Just add an extra column to record the category of transaction. i.e. Income or Expenditure. Hence your database columns would be

    Date
    Category
    Type
    Quantity
    Amount
    Total
    Notes

    The next point is do you really want to clutter up your user form with separate boxes for each Type. The only conceivable reason for doing this might be if any one transaction consisted of more than one type. In any case I'd still only have a userform which contained boxes for the fields I mention above.
    And if this is a form merely for capturing data records, do you really want the Grand Profit, Tax & Net Profit since these are presumably outworkings of the data you capture and can be calculated in the background. In any case you don't appear to be recording the GP Tax & NP anywhere in the database.

    Finally I'd just ask whether you really need a User Form. Personally when I build data capture macros like this I create a 'new record' row of cells above the database into which the user enters the various values. Then a 'Submit' button macro merely adds a new top line to the database, copies the new record row and pastes it as values to the newly introduced row.
    Richard Buttrey

    RIP - d. 06/10/2022

    If any of the responses have helped then please consider rating them by clicking the small star icon below the post.

  3. #3
    Registered User
    Join Date
    09-08-2014
    Location
    Sydney
    MS-Off Ver
    2013
    Posts
    61

    Re: UserForm Income / Expenditure Database?

    Quote Originally Posted by Richard Buttrey View Post
    Hi,

    The first question I'd ask is what are your reasons for creating two data tables. Why not create a single database which will be more flexible, particularly if you want to use a Pivot Table for any subsequent analysis.

    Just add an extra column to record the category of transaction. i.e. Income or Expenditure. Hence your database columns would be

    Date
    Category
    Type
    Quantity
    Amount
    Total
    Notes

    The next point is do you really want to clutter up your user form with separate boxes for each Type. The only conceivable reason for doing this might be if any one transaction consisted of more than one type. In any case I'd still only have a userform which contained boxes for the fields I mention above.
    And if this is a form merely for capturing data records, do you really want the Grand Profit, Tax & Net Profit since these are presumably outworkings of the data you capture and can be calculated in the background. In any case you don't appear to be recording the GP Tax & NP anywhere in the database.

    Finally I'd just ask whether you really need a User Form. Personally when I build data capture macros like this I create a 'new record' row of cells above the database into which the user enters the various values. Then a 'Submit' button macro merely adds a new top line to the database, copies the new record row and pastes it as values to the newly introduced row.
    Hi Richard,

    Thanks so much for the reply. Ideally I would like to have something like you suggested in the first part of the answer. But I was not quite sure how to arrange that especially record the category. If would please provide a rough working file would truly appreciate that.

    About the Grand Profit, Net and Tax part is just an extension to have a quick overview what's on the for at that point. Its not necessary and not required to capture of-course. Thanks again and hope to receive a working demo file please. Cheers.

  4. #4
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 insider Version 2504 Win 11
    Posts
    24,706

    Re: UserForm Income / Expenditure Database?

    How to launch your form: http://www.homeandlearn.org/launch_a...user_form.html

    How to reset your form: http://www.ozgrid.com/forum/showthread.php?t=26614

    How to populate your dataset from form: http://www.techrepublic.com/article/...ntry-in-excel/

    EDIT: Richard has raised some very valid questions.
    Alan עַם יִשְׂרָאֵל חַי


    Change an Ugly Report with Power Query
    Database Normalization
    Complete Guide to Power Query
    Man's Mind Stretched to New Dimensions Never Returns to Its Original Form

  5. #5
    Registered User
    Join Date
    09-08-2014
    Location
    Sydney
    MS-Off Ver
    2013
    Posts
    61

    Re: UserForm Income / Expenditure Database?

    Hi alansidman,

    Thanks for those links. I will definitely have a look into those. Also, if you could please provide a rough working file would truly appreciate that. I am asking the same to Richard as well. Thanks.

  6. #6
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: UserForm Income / Expenditure Database?

    Hi,

    This was the sort of thing I had in mind. I generally build in a check that all input cells are complete before a new record can be added.
    Attached Files Attached Files

  7. #7
    Registered User
    Join Date
    09-08-2014
    Location
    Sydney
    MS-Off Ver
    2013
    Posts
    61

    Re: UserForm Income / Expenditure Database?

    Quote Originally Posted by Richard Buttrey View Post
    Hi,

    This was the sort of thing I had in mind. I generally build in a check that all input cells are complete before a new record can be added.
    Hi mate, thanks for the reply. But can we do the same thing in a Userform please? Thanks again. Almost the same sort of thing but the button and the lists ahould be in a userform please. Cheers.
    Last edited by artistdedigital; 09-24-2015 at 07:34 PM.

  8. #8
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: UserForm Income / Expenditure Database?

    Populate the same range of 'new record' cells that I added from the various boxes you have on the userform.
    Then use the same code which adds the record to the database but add it to whichever button you create on the userform to submit the new record range.

    Personally though I think the userform overcomplicates what is a trivial requirement.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Using userform to help create expence/income sheet
    By clabhart in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 07-24-2014, 12:17 PM
  2. Replies: 2
    Last Post: 03-01-2014, 10:48 AM
  3. userform checkboxes for calculations of annualizing income and expenses
    By union in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 01-22-2014, 11:49 PM
  4. Examples Income and Expenditure spreadsheets
    By a1b2c3d4e5f6g7h in forum Excel General
    Replies: 0
    Last Post: 03-24-2013, 04:17 PM
  5. [Share]Excel Income & Expenditure form
    By aiwnjoo in forum Excel General
    Replies: 3
    Last Post: 05-30-2010, 04:35 AM
  6. [SOLVED] personal income and expenditure chart
    By mikeyboy87 in forum Excel - New Users/Basics
    Replies: 1
    Last Post: 12-14-2005, 11:40 AM
  7. Replies: 1
    Last Post: 02-27-2005, 08:06 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1