Forum Discussion
SubhabM
Jan 29, 2025Copper Contributor
Populate cell from horizontal assignment
I have this - Sheet2: The 'X' marks indicate which category the product belongs to (either Category name1, Category Name2, or Category Name3). Sheet1: In Column B, I want to calculate and pop...
- Jan 29, 2025
=IFERROR(FILTER('Sheet2'!$B$1:$D$1, INDEX('Sheet2'!$B$2:$D$1000, XMATCH($A3, 'Sheet2'!$A$2:$A$1000), 0)="X"), "")
HansVogelaar
Jan 29, 2025MVP
=IFERROR(FILTER('Sheet2'!$B$1:$D$1, INDEX('Sheet2'!$B$2:$D$1000, XMATCH($A3, 'Sheet2'!$A$2:$A$1000), 0)="X"), "")
SubhabM
Jan 29, 2025Copper Contributor
This is exactly what is applicable in my case.