SOLVED

Loading data from one worksheet to another

Brass Contributor

Hi,

The attached sheet contains a "Suppliers" tab which includes a list of suppliers. I used a formula in the "Bank Payments" to download suppliers according to certain conditions. I could not use the same formula in the "Invoices" and "Daily Payments" tabs because it contains merged cells. Is there another formula to do the same job or the existing one could be modified?

 

Thanks for your help.

 

Regards

5 Replies
Unmerge the merged cells.

The setup of those tabs mandates to have two rows per entry. Even if you unmerge the cells, the formula will not skip one row.

@saad soliman ,

 

First, convert it to regular (not array) formula

Second, skip every second row (see ROWS part)

=IFERROR(INDEX(Table1[[Supplier Name]:[Product Type]],AGGREGATE(15,6,1/(Table1[Product Type]=$A$3) / (Table1[Payment Type]="EFT")*(ROW(Table1[Product Type])-1),(ROWS($B$3:B3)-1)/2+1  ),1),"")

That is first few names in Invoices

 

best response confirmed by saad soliman (Brass Contributor)
Solution

Thanks a lot Sergei. 

@saad soliman , you are welcome

1 best response

Accepted Solutions
best response confirmed by saad soliman (Brass Contributor)
Solution

Thanks a lot Sergei. 

View solution in original post