• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

all other cells data filled with single dropdown select

single selection in cell- automatically other cells data should be filled

  • 10000

    Votes: 1 50.0%
  • 100000

    Votes: 1 50.0%

  • Total voters
    2

yaparala

New Member
Hi,
i have data(List) and i want report like (validation).

my query is:

in validation sheet:- when i am selecting A1,A2,A3,A4 IN ACCOUNT TYPE column in B2,B5,B8,B11 cell and other all relevant data for A1,A2,A3,A4 data should be filled automatically in other cells.

please find the attached sheet for more information.
 

Attachments

  • Report.xlsx
    9.7 KB · Views: 5
What do you mean by other all relevant data? For example, if you select A1 in Cell B2, you need the cells A2:A4, C2:C4, D2:D4 to be filled automatically?
 
Hi, yaparala!

If you can afford to use a helper column, E for example, you can try this:
E2: =SI(B2<>"";B2;E1) -----> in english: =IF(B2<>"",B2,E1)

So the formula for column A would be:
A2: =INDICE(list!$A$2:$A$12;COINCIDIR($E2;list!$B$2:$B$12;0)+CONTAR.SI($E$1:$E2;$E2)-1) -----> in english: =INDEX(list!$A$2:$A$12,MATCH($E2,list!$B$2:$B$12,0)+COUNTIF($E$1:$E2,$E2)-1)

Same thing for C & D columns adjusting the ranges accordingly.

Regards!
 
Back
Top