Thanks so much for the reply VBACO.I am sure there is a cleaner way to do this, but here is a formula that works.
=IF(ISNUMBER(B2),"FB, ","")&IF(ISNUMBER(C2),"WI, ","")&IF(ISNUMBER(D2),"CE ,","")&IF(ISNUMBER(E2),"FE ,","")&IF(ISNUMBER(F2),"HB ,","")&IF(ISNUMBER(G2),"PR ,","")&IF(ISNUMBER(H2),"HK ","")
It's come up The formula you typed contains an error.Just change the IsNumber to that expression. For example
=IF(B2>0"FB,","")&IF(C2>0,"WI ".... and so on.
Also, what formula do I use to get the max games played at a certain position?Code:Round FB WI CE FE HB PR HK SR LK ZILLMAN, William 7 - 4 10 - - - - - GORDON, Kevin - 2 - - - - - - - MICHAELS, Steve - 17 3 - - - - - -
ZILLIAM, William FE
GORDON, Kevin WI
MICHAELS, Steve WI
Thank you very much VBACO.I will think about your second question and let you know.
Thanks again VBACO but all the results come back as LK. Which is the last position.Ok, I have figured out a much cleaner method that I think will work.
=INDEX($B$1:$H$1,1,MATCH(MAX(B2:H2),B2:H2))
Only problem is.. if there are 2 positions matching it will only return the first it encounters. I am more of a VBA guy than an Excel Formula