Hi @DavidG3276 ,
Could you tell me:
What are the data types of the three columns? Are they all ‘Single line of text’ columns?
What control do you use to display data? Is it a gallery control?
If my assumptions are correct, you could try the following steps:
1\ Add a gallery control and set its Items property to:
GroupBy(LIST64,"Project","Release") // LIST64 is the name of my list
Insert a label control to this gallery control and set its Text property to:
ThisItem.Project
2\ Embed a gallery control into the gallery control and set its Items property to:
Distinct(ThisItem.Release,Release)
Insert a label control to this gallery control and set its Text property to:
ThisItem.Result
3\ The result is as follows:

Best Regards,
Wearsky
If my post helps, then please consider Accept it as the solution to help others. Thanks.