Forum Discussion
shwan_dxb
Sep 10, 2022Copper Contributor
Extracting relationships from a heat map
Hi there, I have been trying to figure out a way on how to use multiple formulas to extract information from a heat map. I am trying to identify all the departments that interact with eachother by se...
- Sep 10, 2022
=IFERROR(INDEX(Tabelle1!$C$2:$AF$2,,SMALL(IF(OFFSET(Tabelle1!$C$3:$AF$3,MATCH(Tabelle2!$B$4,Tabelle1!$B$4:$B$33,0),0)=$B$2,COLUMN(Tabelle1!$A:$AD)),ROW(1:1))),"")
You can try this formula. Enter the formula with ctrl+shift+enter if you don't work with Office365 or 2021.
OliverScheurich
Sep 10, 2022Gold Contributor
=IFERROR(INDEX(Tabelle1!$C$2:$AF$2,,SMALL(IF(OFFSET(Tabelle1!$C$3:$AF$3,MATCH(Tabelle2!$B$4,Tabelle1!$B$4:$B$33,0),0)=$B$2,COLUMN(Tabelle1!$A:$AD)),ROW(1:1))),"")
You can try this formula. Enter the formula with ctrl+shift+enter if you don't work with Office365 or 2021.
- shwan_dxbSep 11, 2022Copper ContributorThank you so much for this! This is exactly what I was looking for 🙂