+ Reply to Thread
Results 1 to 10 of 10

Neatly present data from a multi-record file

  1. #1
    Registered User
    Join Date
    09-27-2012
    Location
    Maryville, MO
    MS-Off Ver
    Excel 2010
    Posts
    11

    Neatly present data from a multi-record file

    Hello,

    I have a spreadsheet with many (250) lines / records. There are probably 15 fields for each record. What I would like to do is create a "cover page / worksheet" of some sort with the ability to arrow forward or backwards through the records. Each records data would neatly display on the cover page.

    Thanks!

  2. #2
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,946

    Re: Neatly present data from a multi-record file

    Hi Patrick

    Considering that 68 people (at least) have read your thread, and not 1 has offered any suggestions, I would recommend that you consider expanding on your description, and consider that perhaps it would be easier to help you if you uploaded a sample workbook, showing what data you are working with, a few examples of what your expected outcome would be, and how you would arrive at that (remove any confidential info if necessary).
    To attach a file to your post,
    click advanced (next to quick post),
    scroll down until you see "manage file",
    click that and select "add files" (top right corner).
    click "select files" find your file, click "open" click "upload" click 'done" bottom right. click "submit reply"

    Once the upload is completed the file name will appear below the input boxes in this window.
    You can then close the window to return to the new post screen.
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  3. #3
    Registered User
    Join Date
    09-27-2012
    Location
    Maryville, MO
    MS-Off Ver
    Excel 2010
    Posts
    11

    Re: Neatly present data from a multi-record file

    Producer Example.xlsx

    Thanks for your advice! Hopefully this will get a few responses!

  4. #4
    Valued Forum Contributor ron2k_1's Avatar
    Join Date
    09-30-2009
    Location
    Not the USA
    MS-Off Ver
    Excel 2003, 2007
    Posts
    606

    Re: Neatly present data from a multi-record file

    Without VBA I'd probably do it like this. Can you live by adding Column A to your data base and keep numbering as you go along. The scrolling bar will go only to 100, if you need more than that; right click on the scrolling bar and set the Max value you desire (current is 100). If scroll to a record that does not exist, then each field in the summary page will show you "No Record Found" (you can change that text from each formula), ensure each line in the database has a number and is numbered consecutively.
    Attached Files Attached Files
    Ron
    Knowledge is knowing that a tomato and pepper are fruits. Wisdom is knowing whether to put these in a fruit salad

    Kindly

    [1] Use code tags. Place "[code]" before the first line of code and "[/code"]" after the last line of code. Exclude quotation marks
    [2] Mark your post [SOLVED] if it has been answered satisfactorily by editing your original post in advanced mode.
    [3] Thank (using the little scale) those that provided useful help; its nice and its very well appreciated

  5. #5
    Valued Forum Contributor ron2k_1's Avatar
    Join Date
    09-30-2009
    Location
    Not the USA
    MS-Off Ver
    Excel 2003, 2007
    Posts
    606

    Re: Neatly present data from a multi-record file

    Now, that I think about it. You didn't need an additional column for numbering the records. You can do that with a Index/Row Match/Col Match. You could have match the row number to the scroll bar linked cell.

    If you know how to use the INDEX formula, then you can use that instead of the vlookup and delete column A from the database sheet.

  6. #6
    Registered User
    Join Date
    09-27-2012
    Location
    Maryville, MO
    MS-Off Ver
    Excel 2010
    Posts
    11

    Re: Neatly present data from a multi-record file

    Quote Originally Posted by ron2k_1 View Post
    Without VBA I'd probably do it like this. Can you live by adding Column A to your data base and keep numbering as you go along. The scrolling bar will go only to 100, if you need more than that; right click on the scrolling bar and set the Max value you desire (current is 100). If scroll to a record that does not exist, then each field in the summary page will show you "No Record Found" (you can change that text from each formula), ensure each line in the database has a number and is numbered consecutively.
    This is WONDERFUL Ron! Thanks! I am not sure what you mean by "scrolling bar"? Is it the windows scroll bar? I will need to set the max to about 300.


    edit - Which sheet is the scroll bar found and approx. where on the sheet is it located!?


    Thanks again!
    Pat
    Last edited by Patrick Immel; 01-17-2013 at 08:17 PM.

  7. #7
    Valued Forum Contributor ron2k_1's Avatar
    Join Date
    09-30-2009
    Location
    Not the USA
    MS-Off Ver
    Excel 2003, 2007
    Posts
    606

    Re: Neatly present data from a multi-record file

    I called the bar that you click on to move to the next/previous record on the sheet "Form" (on top row 2 starting at column B:F) a scrolling bar. Although the proper name is a "Spin Button" ActiveX control...

    To set the max value (this can be done via macro but I kept your sheet sanitized without any vba) you need to go to Developer tab, click on Design Mode, got to "Form" worksheet, right click on the Spin Button, select Properties, Select Alphabetic tab, look for the Max field and set it to whatever you need.

    I've modified the sheet I gave you and deleted column A (which I inserted on my previous submission) on the worksheet DATA. As I said on my previous post, I realized that you don't need it with a different formula and will save you the trouble to number each record consecutively (in ascending/descending order).
    Attached Files Attached Files

  8. #8
    Registered User
    Join Date
    09-27-2012
    Location
    Maryville, MO
    MS-Off Ver
    Excel 2010
    Posts
    11

    Re: Neatly present data from a multi-record file

    Thanks Ron!! After speaking with my co-user on this project, we will be using the Col 1 numbers.

    I have one last question. Is there a way on the form to search by either last name or the column 1 number and then go directly to that record? I am going to have between 250 and 300 students, and while most of them, (once they are assigned the number) will go in order, I just thought it might be easier for the producers if they could access the records non-sequencially.

    If this is not possible or you don't have time, NO worries as you have provided me help beyond measure! Is there a way I can toss you a little something in the way of thanks!?

    Pat

  9. #9
    Valued Forum Contributor ron2k_1's Avatar
    Join Date
    09-30-2009
    Location
    Not the USA
    MS-Off Ver
    Excel 2003, 2007
    Posts
    606

    Re: Neatly present data from a multi-record file

    No worries; this is what we do on here. I got tons of help from this people and I'm pretty sure they didn't expect anything in return. A simple thanks by way of pressing the little star on the bottom left corner is enough.

    If you follow my procedures to get to the Properties window of the spin button you'll notice that there is a field called "Linked Cell". Here is where the bar knows which record it is on, the number ranges between the set Min/Max values (set in Properties). So you can create another field on the Form page (say cell I1); call it (whatever you want) "Record Number", and then change C2 (linked cell in Properties of spin button) to J1. You can then type any number in J1 and form will sear for that record.

    I cannot think of any other way that will not require some VBA finessing.

  10. #10
    Registered User
    Join Date
    09-27-2012
    Location
    Maryville, MO
    MS-Off Ver
    Excel 2010
    Posts
    11

    Re: Neatly present data from a multi-record file

    THANKS! Will do!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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