I want to do something in excel which I will try to explain, I want to be able to put a letter in a cell such as 'A' which is to mean a cost. e.g. if you put an 'A' in a cell, it automatically knows that it means £30, or if I put a 'B' in the cell it knows that it means £40 but I want it to stay showing as the letter and not change to the price. Any help appreciated
Thanks
Why not leave the cell as it is, showing the letter, then another cell (maybe hidden) showing the value (that you can get from a 'look up' table). Other calculations can then refer to the value in the hidden cell.
There will be other ways of doing it too
Thanks for all answers, I am basically setting up a work event and a meal as an apprenticeship task. there are multiple choices of meal option at the restaurant and I want each meal choice to have it's own specified code (the letter). So by each persons name, it can have: starter - A, Main meal - F, Dessert - G. and so on etc...
As factor30 suggested, you can use a lookup table, which should look like this (the "," signifies the next cell):
A, £30
B, £40
C, £50 etc.
Then in your calculation cells you can put =VLOOKUP(meal,range,2) - meal is the letter code you want to look up, range is the whole lookup table, 2 is the column of the lookup table with the price you want to return.