@WarrenBelz thank you! So Im grabing an Owners sharepoint table then looking up who has the App opened, then using his assigned Entities (very few) to apply a filter in the SQL table with 'IN' the entity Column. (multiple values being filtered in same column).
ClearCollect(Owners,Filter(Owner_Entities,OwnerBranch = First(Split(User().Email,"@")).Result));
ClearCollect(
CurrentR,
ShowColumns(
Filter('[dbo].[CurrentR]',
'Branches' in Owners.Entity )
,
"Entity_x0020_Adjust_x0020_for_x0020_S_x0020_Branches",
"Agreement_x0020_Name",
"Agreement_x0020_Number",
"LOB",
"Agreement_x0020_Type",
"Inter_x0020_Comp_x0020_Indicator",
"Price_x0020_Escalation",
"gm_x0020__x0025__x0020__x0028_equal_x0020_to_x0020_estimate_x002c__x0020_change_x0020_as_x0020_req_x0027_d_x0029_",
"Contract_x0020_Duration",
"Renewal_x0020_Month",
"New_x0020_Contract_x0020_Start_x0020_Date",
"secured_x0020_volume",
"secured_x0020_gross_x0020_margin",
"Monthly_x0020_Revenue",
"Monthly_x0020_Margin",
"New_x0020_Monthly_x0020_Revenue_x0020_per_x0020_secured",
"New_x0020_Monthly_x0020_Margin_x0020_per_x0020_Secured",
"Catch_x002d_up_x0020_Revenue",
"Catchup_x0020_GM",
"Comments",
"Contract_x0020_Amount",
"Renewing_x003f_",
"Index_Id",
"Orig_x0020_Est_x0020_Margin_x0020__x0024_",
"Period_x0020_of_x0020_Renewal",
"Period_x0020_of_x0020_Start_x0020_Date"
)
);