LDNeedsHelp
New Member
- Joined
- Feb 29, 2016
- Messages
- 4
I have a large excel table listing a number of duplicated project names on the vertical axis (depicting different milestone dates for each project), represented against a number of impact types in the horizontal axis, calling out for each line item if there's an impact or not, and what type of impact.
I want to present the data by project name, rolling up the impacts to show where there is a "yes" value recorded against any project milestone under that project name.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Project[/TD]
[TD]Impact1[/TD]
[TD]Impact2[/TD]
[TD]Impact3[/TD]
[/TR]
[TR]
[TD]A[/TD]
[TD]NO[/TD]
[TD]NO[/TD]
[TD]NO[/TD]
[/TR]
[TR]
[TD]A[/TD]
[TD]YES[/TD]
[TD]NO[/TD]
[TD]NO[/TD]
[/TR]
[TR]
[TD]A[/TD]
[TD]NO[/TD]
[TD]NO[/TD]
[TD]YES[/TD]
[/TR]
[TR]
[TD]B[/TD]
[TD]NO[/TD]
[TD]YES[/TD]
[TD]NO[/TD]
[/TR]
[TR]
[TD]B[/TD]
[TD]NO[/TD]
[TD]NO[/TD]
[TD]YES[/TD]
[/TR]
[TR]
[TD]C[/TD]
[TD]NO[/TD]
[TD]NO[/TD]
[TD]NO[/TD]
[/TR]
[TR]
[TD]C[/TD]
[TD]NO[/TD]
[TD]NO[/TD]
[TD]NO[/TD]
[/TR]
[TR]
[TD]C[/TD]
[TD]NO[/TD]
[TD]YES[/TD]
[TD]NO[/TD]
[/TR]
</tbody>[/TABLE]
I need to represent where for any row for each project, an impact column is "Yes". For the above for example, I want to show:
Project A: Impact1, Impact3
Project B: Impact2, Impact3
Project C: Impact2
I think this could be achieved by a VLoookup or IndexMatch and an IF statement - i.e. IF VLookup for Project "B" in Column 1 (Impact1) = "No" then keep searching for "Yes". If Yes exists, return "Impact1". I don't know how to achieve the "keep searching until you find a yes" bit...
Appreciate any guidance! Thanks in advance!
I want to present the data by project name, rolling up the impacts to show where there is a "yes" value recorded against any project milestone under that project name.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Project[/TD]
[TD]Impact1[/TD]
[TD]Impact2[/TD]
[TD]Impact3[/TD]
[/TR]
[TR]
[TD]A[/TD]
[TD]NO[/TD]
[TD]NO[/TD]
[TD]NO[/TD]
[/TR]
[TR]
[TD]A[/TD]
[TD]YES[/TD]
[TD]NO[/TD]
[TD]NO[/TD]
[/TR]
[TR]
[TD]A[/TD]
[TD]NO[/TD]
[TD]NO[/TD]
[TD]YES[/TD]
[/TR]
[TR]
[TD]B[/TD]
[TD]NO[/TD]
[TD]YES[/TD]
[TD]NO[/TD]
[/TR]
[TR]
[TD]B[/TD]
[TD]NO[/TD]
[TD]NO[/TD]
[TD]YES[/TD]
[/TR]
[TR]
[TD]C[/TD]
[TD]NO[/TD]
[TD]NO[/TD]
[TD]NO[/TD]
[/TR]
[TR]
[TD]C[/TD]
[TD]NO[/TD]
[TD]NO[/TD]
[TD]NO[/TD]
[/TR]
[TR]
[TD]C[/TD]
[TD]NO[/TD]
[TD]YES[/TD]
[TD]NO[/TD]
[/TR]
</tbody>[/TABLE]
I need to represent where for any row for each project, an impact column is "Yes". For the above for example, I want to show:
Project A: Impact1, Impact3
Project B: Impact2, Impact3
Project C: Impact2
I think this could be achieved by a VLoookup or IndexMatch and an IF statement - i.e. IF VLookup for Project "B" in Column 1 (Impact1) = "No" then keep searching for "Yes". If Yes exists, return "Impact1". I don't know how to achieve the "keep searching until you find a yes" bit...
Appreciate any guidance! Thanks in advance!