+ Reply to Thread
Results 1 to 3 of 3

Spreadsheet for game items evolution required

  1. #1
    Registered User
    Join Date
    09-02-2009
    Location
    Singapore
    MS-Off Ver
    Excel 2003
    Posts
    60

    Spreadsheet for game items evolution required

    I have a table as shown below. Under a separate worksheet, I wish to find out the name of next evolution item when I key in the lower tier item's name
    eg: A1->A2->A3
    B1->B2
    if the item that is keyed in is of the highest tier, the formula should put "Item is Ultimate"
    Wonder if it has got to do with the VLookup and If functions
    Thanks

    Name Tier Effect
    Iron Bangle A1 HP
    Silver Bangle A2 HP
    Tungsten Bangle A3 HP
    Power's Wristband B1 Strength
    Brawler's Wristband B2 Strength
    Black Belt[ D1 Physical Defense
    General's Belt D2 Physical Defense

  2. #2
    Forum Expert DGagnon's Avatar
    Join Date
    02-23-2012
    Location
    Ontario, Canada
    MS-Off Ver
    Excel 2003, 2007
    Posts
    1,645

    Re: Spreadsheet for game items evolution required

    would you be entering the item ID? (A1) or the name ("Iron Bangle")

    it shoudl be easy if you are using the ID, you could have a list of items and use a vlookup mixed with a right string somethign like this

    =IFERROR(VLOOKUP(LEFT(A1,1)&RIGHT(A1,1)+1,D:E,2,0),"Item is Ultimate")
    Last edited by DGagnon; 03-24-2012 at 08:38 PM.
    If you liked my solution, please click on the Star -- to add to my reputation

    If your issue as been resolved, please clearly state so and mark the thread as [SOLVED] using the thread tools just above the first post.

  3. #3
    Forum Expert DGagnon's Avatar
    Join Date
    02-23-2012
    Location
    Ontario, Canada
    MS-Off Ver
    Excel 2003, 2007
    Posts
    1,645

    Re: Spreadsheet for game items evolution required

    i just noticed you are in Excel 2003, you would need to adjust the formula to this:

    =IF(ISERROR(VLOOKUP(LEFT(A2,1)&RIGHT(A2,1)+1,D:E,2,0)),"Item is Ultimate",VLOOKUP(LEFT(A2,1)&RIGHT(A2,1)+1,D:E,2,0))

    example attached
    Attached Files Attached Files

+ 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