• 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.

Populate Columns

Hello,

I have a list of accounts listed in the left-most column on the Data tab (please see the attached workbook) and the associated amounts by month. I need to create a data load on the Result tab that would list all the amounts associated with each month. I cannot use VB project or macros. Could you please suggest the most reliable approach?

Thank you!!
 

Attachments

  • Question.xlsx
    10.9 KB · Views: 13
Results Tab C2 and fill down
=INDEX(Data!$B$2:$F$5,MATCH(Result!A2,Data!$A$2:$A$5,0),MATCH(Result!B2,Data!$B$1:$F$1,0))
 
Since i worked on it...

Put it in C2 and drag it down..

SUMPRODUCT((Data!$B$2:$F$5)*(Data!$A$2:$A$5=Result!$A21)*(Data!$B$1:$F$1=Result!$B21))
 
Since it appears as time goes on, you will need to populate below Row 22, you can add the following to PauF's excellent formula to prevent #N/A! errors.
=IFERROR(INDEX(Data!$B$2:$F$5,MATCH(Result!A2,Data!$A$2:$A$5,0),MATCH(Result!B2,Data!$B$1:$F$1,0)),"")
See attached.
 

Attachments

  • Copy of Question.xlsx
    12.2 KB · Views: 6
Back
Top