+ Reply to Thread
Results 1 to 12 of 12

Some questions for my League of Legends Statistics spreadsheet

  1. #1
    Registered User
    Join Date
    12-12-2013
    Location
    San Francisco, CA
    MS-Off Ver
    2010
    Posts
    27

    Question Some questions for my League of Legends Statistics spreadsheet

    So I'm a nerd and have gotten into the game League of Legends. The problem is that I'm a HYPER nerd and want to track my statistics, too. I started this in Word but figured it would be much more efficient if I made an Excel spreadsheet, but I'm only familiar with some basic things. I was hoping to get some help formatting this spreadsheet so that it will shine out amid my uber nerd lifestyle.

    My CURRENT question is this:

    excel_002.jpg

    I want it so that when I add a new name to column B (in this case it would be in cell B43), it will automatically add the next number to the left of it (in this case, 041) into cell A43. Is this possible?


    Thanks so far to ChemistB who's helped me out in this silly project of mine.
    Attached Images Attached Images
    Last edited by mega_nerd; 12-12-2013 at 11:06 PM.

  2. #2
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Some questions for my League of Legends Statistics spreadsheet

    Sounds like
    COUNTA($C:$C) will give you total games
    =COUNTIF($C:$C, "Win") to give wins

    Is that what you needed?
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  3. #3
    Registered User
    Join Date
    12-12-2013
    Location
    San Francisco, CA
    MS-Off Ver
    2010
    Posts
    27

    Re: Some questions for my League of Legends Statistics spreadsheet

    Looks like that worked perfectly, thanks!

    Also, I wonder if there's a way to get Excel to automatically add the number in column A if I add a name to column B. Is this possible?

  4. #4
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Some questions for my League of Legends Statistics spreadsheet

    Sure,
    Assuming you are formatting Column A with Custom number format 000
    In A4 copied down as far as you think you will go
    =IF(ISTEXT(A4), A3+1, "")
    Does that work for you?

  5. #5
    Registered User
    Join Date
    12-12-2013
    Location
    San Francisco, CA
    MS-Off Ver
    2010
    Posts
    27

    Re: Some questions for my League of Legends Statistics spreadsheet

    Possibly, I'm having some trouble though. I'm not sure what you mean by A4? You want me to put that in cell A4? When I copy and paste that formula into A4 I get an error. But I'm not sure why I'd put it in A4 to begin with. Could you elaborate?

  6. #6
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Some questions for my League of Legends Statistics spreadsheet

    It is giving you an error (my guess) because the value in A3 is stored as text.
    Select Column A
    Right click > Format Cells
    Number tab> Custom Format
    Replace "General" with 000

    Then paste that formula into A4 (where you had 002) and drag it down.
    Questions?

  7. #7
    Registered User
    Join Date
    12-12-2013
    Location
    San Francisco, CA
    MS-Off Ver
    2010
    Posts
    27

    Re: Some questions for my League of Legends Statistics spreadsheet

    I'm not sure if I understand correctly.

    I've already formatted the cells so that their format is 000 when a number is placed in there, and I can drag them down and it will count them for me.

    I want it so that when I put a new name in the B column, it will automatically add the next number next to it in the A column. So for instance

    excel_002.jpg

    I want it so that when I place a new name in the B column (in this case it would be B43), Excel will automatically recognize it as a new name in the list and number A43 for me as 041. Is this possible?

  8. #8
    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,926

    Re: Some questions for my League of Legends Statistics spreadsheet

    It looks like your "numbers" in A may be text, not actual numbers/values. Test with =isnumber(A42) (or any of them) FALSE indicates that your number is actually text that looks like a number. You cant add a value to a number (How much is phone +5? lol)

    Do the numbers have to be 3-digit? if not, renumber them all, Atart with 1 in, say, A2, then use this in A3 (or the next cell down, just adjust the ref) =if(B3="","",A2+1) copied down
    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

  9. #9
    Registered User
    Join Date
    12-12-2013
    Location
    San Francisco, CA
    MS-Off Ver
    2010
    Posts
    27

    Re: Some questions for my League of Legends Statistics spreadsheet

    After running that quick test (=isnumber(A42)) - yes, they are indeed numbers.

  10. #10
    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,926

    Re: Some questions for my League of Legends Statistics spreadsheet

    OK then maybe they have a custom format to make them appear that way. Can you upload a sample of you workbook please?

  11. #11
    Registered User
    Join Date
    12-12-2013
    Location
    San Francisco, CA
    MS-Off Ver
    2010
    Posts
    27

    Re: Some questions for my League of Legends Statistics spreadsheet

    Yes, the cells in column A are formatted to be 000

    Still need help regarding my current problem D:

  12. #12
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Some questions for my League of Legends Statistics spreadsheet

    Upload an example of your sheet (Go Advanced> Manage Attachments). Hard to diagnose what is wrong without looking at it.

+ 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. spreadsheet that creates statistics
    By batchjb69 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 03-17-2013, 07:13 PM
  2. Replies: 8
    Last Post: 11-07-2012, 03:29 PM
  3. Statistics spreadsheet
    By molson888 in forum Excel General
    Replies: 3
    Last Post: 11-22-2011, 11:56 PM
  4. Help with functions in Darts statistics spreadsheet
    By KJC in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-20-2007, 04:04 PM
  5. [SOLVED] baseball Statistics spreadsheet
    By fkoskotas in forum Excel General
    Replies: 3
    Last Post: 05-02-2006, 02:00 PM

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