Thread: how !!
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
Pierre Pierre is offline
external usenet poster
 
Posts: 149
Default how !!

please i would like the results of "a" for example to be showed each one i
a cell. i.e :

in A1= "a" ---- the results are : in cell B1 we should get =1
and in cell B2 we should get =3
ect...ect



"Pete_UK" wrote:

OK, you could change it to this:

=IF(A1="","",TRIM(IF(ISNA(VLOOKUP(A1,Sheet1!A:B,
2,0)),"",VLOOKUP(A1,Sheet1!A:B,2,0)) &" "& IF(ISNA(VLOOKUP(A1,Sheet2!
A:B,2,0)),"",VLOOKUP(A1,Sheet2!A:B,2,0)) &" "&
IF(ISNA(VLOOKUP(A1,Sheet3!A:B,2,0)),"",VLOOKUP(A1, Sheet3!A:B,2,0))))

this would give you a space between the numbers, like 1 3 for a, and 3
4 for c.

Hope this helps.

Pete

On May 28, 7:08 pm, pierre wrote:
no ...i want if i entered "a" to give me all its answers . i.e : 1 and 3
, if i entered "b" to give me =2
ect...ect



"Pete_UK" wrote:
So, if you put "a" in A1 of sheet4, you want B1 to show 4 (the sum of
all the a's from the other 3 sheets?) If so, put this in B1 of Sheet4:


=IF(A1="","",IF(ISNA(VLOOKUP(A1,Sheet1!A:B,2,0)),0 ,VLOOKUP(A1,Sheet1!
A:B,2,0)) + IF(ISNA(VLOOKUP(A1,Sheet2!A:B,2,0)),0,VLOOKUP(A1,S heet2!
A:B,2,0)) + IF(ISNA(VLOOKUP(A1,Sheet3!A:B,2,0)),0,VLOOKUP(A1,S heet3!
A:B,2,0)))


Copy this down as far as you think you need it.


Hope this helps.


Pete


On May 28, 6:39 pm, pierre wrote:
hello help me plz :


given :


in sheet 1 :


A B
3 a 1
4 b 2
5 c 3


in sheet 2 :


A B
1 c 4
2 d 5
3 a 3


in sheet 3 :


A B
2 e 6
3 f 7
4 g 8


NOW i would like to make in sheet 4 the following :
column a:a : the search string
and i would like to receive in column b:b their coresponding results...


thanks- Hide quoted text -


- Show quoted text -