Forum Discussion
To build a dashboard in excel
- Aug 23, 2018
There are a couple of formulas that will let you do this.. but here is one that I learnt from someone (Sergei Baklan) on this board a few day back.
It avoids the use of an array formula which your CPU will thanks you for.
I've attached an example using something similar to what you posted showing it working. Hopefully it helps.
The formula used is this:
=IFERROR(INDEX(tbl_data[Person Name],AGGREGATE(15,6,(1/(tbl_data[Person Name]=$H$2)/NOT(ISBLANK(tbl_data[Person Name]))*ROW(tbl_data[Person Name])-ROW(tbl_data[[#Headers],[Person Name]])),ROW(A1))),"")
There are a couple of formulas that will let you do this.. but here is one that I learnt from someone (Sergei Baklan) on this board a few day back.
It avoids the use of an array formula which your CPU will thanks you for.
I've attached an example using something similar to what you posted showing it working. Hopefully it helps.
The formula used is this:
=IFERROR(INDEX(tbl_data[Person Name],AGGREGATE(15,6,(1/(tbl_data[Person Name]=$H$2)/NOT(ISBLANK(tbl_data[Person Name]))*ROW(tbl_data[Person Name])-ROW(tbl_data[[#Headers],[Person Name]])),ROW(A1))),"")
- Dinesh KumarAug 24, 2018Copper Contributor
Thank you so much Philip.. have a wonderful day ahead!