I need help

  • Thread starter Thread starter mike
  • Start date Start date
M

mike

I have posted an example of my workbbok at
http://massivemike.co.uk/Tickets.htm
What i want to do is put a number in A4 on sheet 1 and
have it insert the appropriate name from sheet 2 ready for
printing, it works ok with numbers but when i need text i
get a #VALUE error, any ideas anyone i'm pulling my hair
out now, i can email it to you if req
 
Mike,

Bad formula.

Try
=IF(A4=1,Sheet2!C1,IF(A4=2,Sheet2!C2,IF(A4=3,Sheet2!C3,"")))

although you may want a different default to "".
 
Back
Top