Excel – Dynamically filter data from one excel worksheet to display on another

microsoft excel

Is there a straight forward way to have data stored in one worksheet automatically filtered and displayed on a different spreadsheet. I want to be able to update the data in one sheet and have the filtered view on the other worksheet update automatically.

Best Answer

Another method using a data table

Using same Sheet1 Data

sheet1 data

On Sheet3 select cell A5 and press Ctrl + T to create data table and select my table has headers and then OK.

Select cell A5 and A6 and drag across the required number of columns

and edit text to your column headings

Sheet3 Headings

In cell A6 add the following formula

=IF(Sheet1!A2="","",Sheet1!A2)

and drag A6 across required columns then down required rows

enter image description here

then use filters as required.

Related Question