Forum Discussion
Corder
Apr 05, 2022Copper Contributor
Expand Table When New Data is Added Elsewhere
Hello everyone! I have an issue with the setup I have below: Table 1 is automatically updated with responses from a MS Form on SharePoint, but because the formula in cell G4 spills o...
- Apr 05, 2022
Hi Corder
No way, Table2 must be converted to a range that will dynamically adjust with your Table1
in G3: =Table1[#Headers]
in G4: =FILTER(Table1[ID], Table1[Type]="a")
in H4: =XLOOKUP($G4#, Table1[[ID]:[ID]], Table1[Name]) and copy right
OR (much easier), in G4: =FILTER(Table1, Table1[Type]="a")
Lorenzo
Apr 05, 2022Silver Contributor
Hi Corder
No way, Table2 must be converted to a range that will dynamically adjust with your Table1
in G3: =Table1[#Headers]
in G4: =FILTER(Table1[ID], Table1[Type]="a")
in H4: =XLOOKUP($G4#, Table1[[ID]:[ID]], Table1[Name]) and copy right
OR (much easier), in G4: =FILTER(Table1, Table1[Type]="a")
- CorderApr 05, 2022Copper ContributorThe first example does exactly what I need it to. Unfortunately, my example was much simpler that the real data so G4: =FILTER(Table1, Table1[Type]="a") wouldn't work. Thanks so much for your help!
- LorenzoApr 05, 2022Silver ContributorGlad I could help & Thanks for providing feedback