Forum Discussion
Callumc123
Oct 27, 2023Copper Contributor
SORTBY Formula
Hi, I'm looking to add a SORTBY function to an existing FILTER formula. The current formula I have to drag the below information from the main table is the following; =FILTER(Table2[#All],T...
HansVogelaar
Oct 27, 2023MVP
Or, in one formula:
=VSTACK(Table2[#Headers],SORT(FILTER(Table2,Table2[Tender Completed?]="No",), 4))
- Callumc123Oct 27, 2023Copper Contributor
HansVogelaar Thanks so much! for some reason its not liking me trying to turn the 'Outstanding Tenders' table into the same formatted table as the 'Tender Register' do you know a way around this?
- HansVogelaarOct 27, 2023MVP
Unfortunately, you cannot use a dynamic array formula in a table. Such a formula will return a variable number of rows, but a table cannot spontaneously resize itself to accommodate that.