Is there anyway to set up one cell for different variables?
G Gary''s Student Oct 31, 2007 #3 For example, we want a cell to have either the value in B1 or C1 depending upon A1: =IF(AA1=1,B1,C1)
H happy Oct 31, 2007 #5 would you mind if I gave you an example? Gary''s Student said: For example, we want a cell to have either the value in B1 or C1 depending upon A1: =IF(AA1=1,B1,C1) Click to expand...
would you mind if I gave you an example? Gary''s Student said: For example, we want a cell to have either the value in B1 or C1 depending upon A1: =IF(AA1=1,B1,C1) Click to expand...
H happy Oct 31, 2007 #7 Ok, thanks I really appreciate it. (these are just example amounts) I need to be able to type in a procedure code and the correct amount pop up. Is there a way to do that? Procedure Code Amounts PSG 100.00 PSG CPAP 200.00 MSLT 300.00 MWT 400.00
Ok, thanks I really appreciate it. (these are just example amounts) I need to be able to type in a procedure code and the correct amount pop up. Is there a way to do that? Procedure Code Amounts PSG 100.00 PSG CPAP 200.00 MSLT 300.00 MWT 400.00
G Gord Dibben Oct 31, 2007 #8 How about you give us some examples of what you want to do? Gord Dibben MS Excel MVP
G Gary''s Student Oct 31, 2007 #9 This is called a table lookup. Let's put the table in H1 thru I5: Procedure Code Amounts PSG 100 PSG CPAP 200 MSLT 300 MWT 400 The table can be very long. We can put the lookup value in A1: PSG In B1 we enter: =VLOOKUP(A1,H2:I5,2) and it displays: 100 I hope this response keeps you "happy"
This is called a table lookup. Let's put the table in H1 thru I5: Procedure Code Amounts PSG 100 PSG CPAP 200 MSLT 300 MWT 400 The table can be very long. We can put the lookup value in A1: PSG In B1 we enter: =VLOOKUP(A1,H2:I5,2) and it displays: 100 I hope this response keeps you "happy"