+ Reply to Thread
Results 1 to 18 of 18

Help in preparing an Excel sheet for data management

  1. #1
    Registered User
    Join Date
    06-27-2023
    Location
    India
    MS-Off Ver
    Office 2007
    Posts
    16

    Help in preparing an Excel sheet for data management

    I have work book, in which there are two sheets. Sheet1 consists of some data. Sheet2 concerned cells has to be filled from sheet1 based on the class selected from the drop down list.

    Date wise sub totals (of previous date) of columns in sheet2 has to be automatically generated when a new date is entered in date column of sheet2.

    Kindly help me in making this.
    Attached Files Attached Files
    Last edited by sajeevjvarma; 06-27-2023 at 02:03 AM.

  2. #2
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.92 (24120731))
    Posts
    9,146

    Re: Help in preparing an Excel sheet for data management

    are you still using office 2007 ????

    you have also posted in the VBA section , so i suspect you are after some VBA code - which i dont supply , however both parts can be done with a function

    apolgies if not what you want, I'm not following exactly what info you are after - and made a few assumptions

    i'm assuming now what the sheet names are - as not sheet1 or 2
    also the data validation was looking at the wrong column

    so i may have this all wrong

    BUT i dont follow the next part of the question
    Date wise sub totals (of previous date) of columns in sheet2 has to be automatically generated when a new date is entered in date column of sheet2.
    would be useful to have expected results manually entered and why they are the results

    I suspect a SUMIF() could be used to calculate the totals based on a date change , maybe with an IF
    =IF(A2<>A3,SUMIF(A2:A6,A2,L2:L6),"")
    added to column N as i did not know where that was expected to be


    i used in column H
    =IFERROR(INDEX(ABSTRACT!C$2:C$14,MATCH($E2,ABSTRACT!$B$2:$B$14,0)),"")
    and copied across to L
    which matches the titles
    in Abstract
    TB WB/SK NB STAT TOTAL
    Attached Files Attached Files
    Last edited by etaf; 06-27-2023 at 04:43 AM.
    Wayne
    if my assistance has helped, and only if you wish to , there is an "* Add Reputation" on the left hand side - you can add to my reputation here

    If you have a solution to your thread - Please mark your thread solved do the following: >
    Select Thread Tools-> Mark thread as Solved. To undo, select Thread Tools-> Mark thread as Unsolved.

  3. #3
    Registered User
    Join Date
    06-27-2023
    Location
    India
    MS-Off Ver
    Office 2007
    Posts
    16

    Re: Help in preparing an Excel sheet for data management

    Thanks a lot Sir...
    Let me clear that I need Only Excel related function not VBA Code.
    "Date wise sub totals (of previous date) of columns in sheet2 has to be automatically generated when a new date is entered in date column of sheet2. "
    For Ex: (According to the Worksheet provided by you)
    A2 to A5 are the same date, When I change the Date in A6 Cell , all the data present in L2 to L5 should be summed up in the N5 cell.
    Hope you get it now...
    Attached Files Attached Files
    Last edited by sajeevjvarma; 06-28-2023 at 03:32 AM. Reason: Addition of Excel file

  4. #4
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.92 (24120731))
    Posts
    9,146

    Re: Help in preparing an Excel sheet for data management

    as asked
    are you still using office 2007 ????
    can you please provide what version of excel you are using

    can you show more examples of the dates - does each date ONLY appear once .....

    remove my assumed dates and add your dates as they would appear - ensure there are a few examples

  5. #5
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,958

    Re: Help in preparing an Excel sheet for data management

    in N2

    Please Login or Register  to view this content.
    assuming date entered once
    Attached Files Attached Files
    Last edited by JohnTopley; 06-28-2023 at 05:19 AM.
    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.

  6. #6
    Registered User
    Join Date
    06-27-2023
    Location
    India
    MS-Off Ver
    Office 2007
    Posts
    16

    Re: Help in preparing an Excel sheet for data management

    Excel Version : 2007
    does each date ONLY appear once ..... : Yes
    Sheet is provided with few examples
    Attached Files Attached Files
    Last edited by sajeevjvarma; 06-28-2023 at 06:20 AM. Reason: With Example data

  7. #7
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,958

    Re: Help in preparing an Excel sheet for data management

    Answer in post #5

  8. #8
    Registered User
    Join Date
    06-27-2023
    Location
    India
    MS-Off Ver
    Office 2007
    Posts
    16

    Re: Help in preparing an Excel sheet for data management

    Thank you so much Sir...
    Kindly make it the way in the sample worksheet I have attached Sir.
    i.e Sub Totals also for H,I,J,K,L,M & N columns
    Attached Files Attached Files
    Last edited by sajeevjvarma; 06-29-2023 at 09:18 AM. Reason: Sub Totals also for H,I,J,K,L,M columns

  9. #9
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,958

    Re: Help in preparing an Excel sheet for data management

    You will need VBA to do this.


    OR

    in H4 and copy across to L

    Formula: copy to clipboard
    Please Login or Register  to view this content.



    in N4

    Formula: copy to clipboard
    Please Login or Register  to view this content.


    the copy/paste H4:N4 to other "total" lines

    you have different SUM for "Subtotal": which is it ?
    Attached Files Attached Files
    Last edited by JohnTopley; 06-29-2023 at 12:43 PM.

  10. #10
    Registered User
    Join Date
    06-27-2023
    Location
    India
    MS-Off Ver
    Office 2007
    Posts
    16

    Re: Help in preparing an Excel sheet for data management

    Thank you very much Sir. Hope I am not troubling you Sir, Kindly Excuse...

    Herewith sending the final sheet to solve.

    Requirement:
    Sub Totals of H to M column should be calculated automatically When a new Date is inserted in the Date column.
    As shown in the sample sheet.
    Attached Files Attached Files
    Last edited by sajeevjvarma; 06-29-2023 at 11:16 PM. Reason: Final Request

  11. #11
    Registered User
    Join Date
    06-27-2023
    Location
    India
    MS-Off Ver
    Office 2007
    Posts
    16

    Re: Help in preparing an Excel sheet for data management

    Thank you very much Sir. Hope I am not troubling you Sir, Kindly Excuse...

    Herewith sending the final sheet to solve.

    Requirement:
    Sub Totals of H to M column should be calculated automatically When a new Date is inserted in the Date column.
    As shown in the sample sheet.
    Attached Files Attached Files
    Last edited by sajeevjvarma; 07-03-2023 at 07:58 AM. Reason: Final Request

  12. #12
    Registered User
    Join Date
    06-27-2023
    Location
    India
    MS-Off Ver
    Office 2007
    Posts
    16

    Re: Help in preparing an Excel sheet for data management

    Re: Help in preparing an Excel sheet for data management

    Thank you very much Sir. Hope I am not troubling you Sir, Kindly Excuse...

    Herewith sending the final sheet to solve.

    Requirement:
    Sub Totals of H to M column should be calculated automatically When a new Date is inserted in the Date column.
    As shown in the sample sheet.
    Attached Files Attached Files
    Last edited by sajeevjvarma; 07-04-2023 at 07:20 AM. Reason: Pls Help me out

  13. #13
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,958

    Re: Help in preparing an Excel sheet for data management

    Please Login or Register  to view this content.
    Macro "Totals" does the summation but is not clear to me how you want this invoked: by entry of a date (plus data associated with the new date ???)
    Attached Files Attached Files

  14. #14
    Registered User
    Join Date
    06-27-2023
    Location
    India
    MS-Off Ver
    Office 2007
    Posts
    16

    Re: Help in preparing an Excel sheet for data management

    Macro "Totals" does the summation but is not clear to me how you want this invoked: by entry of a date (plus data associated with the new date ???)
    Answer:
    When a new Date is entered in Column A and pressed Enter Key, then data in the H to M column of the previous Date only should be summed up Sir

  15. #15
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,958

    Re: Help in preparing an Excel sheet for data management

    Please Login or Register  to view this content.
    in sheet "Daily Acc"
    Attached Files Attached Files
    Last edited by JohnTopley; 07-04-2023 at 10:45 AM.

  16. #16
    Registered User
    Join Date
    06-27-2023
    Location
    India
    MS-Off Ver
    Office 2007
    Posts
    16

    Re: Help in preparing an Excel sheet for data management

    Thank you so much Sir...
    Is it possible only with excel functions without VBA ?
    As I am unable to get the required result Sir

  17. #17
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,958

    Re: Help in preparing an Excel sheet for data management

    No .. VBA is required.

  18. #18
    Registered User
    Join Date
    06-27-2023
    Location
    India
    MS-Off Ver
    Office 2007
    Posts
    16

    Re: Help in preparing an Excel sheet for data management

    Ok Sir, Thank you very much for your help. Let me know the procedure to execute this in order to get the required result ...
    Once again Thanks a lot

    With High Regards...
    S J Varma

+ 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. Preparing new excel file with data from last year
    By DomagojC in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 01-25-2021, 08:51 AM
  2. Excel Sheet Management With Userform
    By kadr in forum Tips and Tutorials
    Replies: 3
    Last Post: 12-21-2019, 01:58 PM
  3. Excel Sheet for team management
    By Zenden in forum Excel General
    Replies: 1
    Last Post: 01-13-2018, 11:35 PM
  4. Submit Form w/Button & Data Management Sheet
    By lampe2007 in forum Excel General
    Replies: 1
    Last Post: 01-30-2015, 06:28 PM
  5. preparing excel sheet to manage my office account.. HELP!!
    By karanverma.1309 in forum Excel General
    Replies: 2
    Last Post: 06-13-2013, 06:11 AM
  6. Preparing data for association rule mining using excel
    By suiga in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 05-17-2013, 11:29 AM
  7. Case Management Excel Sheet
    By Markel in forum Excel General
    Replies: 2
    Last Post: 06-14-2012, 05:51 AM

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