Card Game Spreadsheet

  • Thread starter Thread starter BlackObsidian
  • Start date Start date
B

BlackObsidian

Hi all!

Suppose I have a real-life card game with 100 cards.

Each card has a Card Title, Attack, Defense, Element type and Level
e.g.

The Warrior
ATK: 2000
DEF: 1000
Element: Water
Level: 6

I have designed a spreadsheet for people to design a deck of 20 card
with columns to reflect each of the attributes above. A=Name, B=ATK et
etc

Instead of a user having to go through each cell and fill out th
relevant information I want to enable the user to begin typing the nam
of the card and excel should reach a certain amount of characters befor
knowing what card it is and give the user the option to hit return t
auto-fill the cell.

This in itself isn't a problem as I know I can type a list of card
directly above the cell to be typed into and Hide those Cells so tha
when a user starts typing, it auto-fills that cell.

The problem occurs because I'd like to be able to fill in Column B, C
D and E with the relevant information for the card name entered.

Any suggestions?

Thanks all
 
Hi,

Yes, Use the Vlookup function which can look up the
characteristics based on the value in another column.

jeff
 
however the table_array would need to be in columns across the page
e.g.
A B C D E
Card Title Attack Defense Element type Level

or HLOOKUP can be used if it is down rows
Card Title
Attack
Defense
Element Type
Level

but then all the different cards titles etc need to be across columns from A
to IV

using VLOOKUP the formula would be similar to
=VLOOKUP(lookup_value, table_array, col_index_num, match_type)
=VLOOKUP(A1,Sheet2!A2:E102,2,0)

where A1 is the card that your players have chosen, sheet2!A2:E102 is the
list of cards as outlined above, 2 is the column number of the piece of data
you want to return & 0 means you want to do an exact match. Remember the
1st parameter (lookup_value) must be the leftmost column in the table_array
(2nd parameter)

Hope this helps
Cheers
JulieD
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Happy Birthday Taffycat! 10
Formatting for credit card number input 4
What is ray tracing ? 1
Preorder GFX card? 8
RTX Voice 1
Which GPU do you use? 16
MSI RX 480 Gaming X 8 GB 0
Gaming System Spec Advice 8

Back
Top