Link to home
Start Free TrialLog in
Avatar of rtod2
rtod2Flag for United States of America

asked on

Fill in fields using data row1

Without having to select a macro to implement, I would like to fill in column B with the items in row 1?  Cell B5 contains an example of what I am trying to accomplish annotated here >> http://screencast.com/t/mdhEjeUuGrl .  The sheet is also attached.

Assistance is greatly appreciated.
tos-terms-matrix-.xlsx
Avatar of barry houdini
barry houdini
Flag of United Kingdom of Great Britain and Northern Ireland image

....but you only want to show "Options" once even if it's selected more than once? There isn't a "native" formula that can concatenate an array but you could use concatenated IF functions, e.g. in B5 copied down

=SUBSTITUTE(IF(D5="x",", "&D$1,"")&IF(E5="x",", "&E$1,"")&IF(F5="x",", "&F$1,"")&IF(G5="x",", "&G$1,"")&IF(H5="x",", "&H$1,"")&IF(OR(I5="x",N5="x",Q5="x"),", "&I$1,"")&IF(J5="x",", "&J$1,"")&IF(K5="x",", "&K$1,"")&IF(L5="x",", "&L$1,"")&IF(M5="x",", "&M$1,"")&IF(O5="x",", "&O$1,"")&IF(P5="x",", "&P$1,"")&IF(R5="x",", "&R$1,"")&IF(S5="x",", "&S$1,"")&IF(T5="x",", "&T$1,"")&IF(U5="x",", "&U$1,"")&IF(V5="x",", "&V$1,"")&IF(W5="x",", "&W$1,"")&IF(X5="x",", "&X$1,"")&IF(Y5="x",", "&Y$1,""),", ","",1)

regards, barry
ASKER CERTIFIED SOLUTION
Avatar of barry houdini
barry houdini
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rtod2

ASKER

perfect!!

I notice that you are using a numbering system.  Is that something automated that you have set up?