@Anonymous
No problem, I always ask questions a few times to make sure I am clear. There is nothing more frustrating that providing you something that doesn't even come close to what you need. It's confusing and a waste of your time.
So, as I see your formulas, your requirement is pretty simple.
You have the three dropdowns that are cascading. Your data is in an Excel table called SiteSupportProfile. You have and EditForm with the three dropdowns named Team_DataCardValue2_1, DataCardValue4_1, and DataCardValue2_1
Your formula for the Gallery or Datatable (recommending Gallery over datatable for flexibility) will be:
Filter(SiteSupportProfile,
Team = Team_DataCardValue2_1.Selected.Result &&
SubTeam = DataCardValue4_1.Selected.Result &&
AllocationBy = DataCardValue2_1.Selected.Result
)
BUT...what I am not getting is the relationship of all of this to the original question you posted.
Is the above formula working well for you or do you have issues with it? Is it that you want some header over your Gallery or DataTable and are trying to create that?
I'm not sure where to lead you (and don't want to lead you wrong) as I am not clear on which part is or is not working.
Can you clarify what exactly you're having problems with?