Hi @Niklas3991 ,
There is no way to get back to the group an app have been shared with, however if you have a separate reference list and at app OnStart did something like
Set(
vUserName,
User().Fullname
);
Set(
vGroup,
Lookup(
YourReferenceList,
YourNameField = vUserName,
YourGroupField
)
)
then you could have when you put the group in the Text box (I am not sure exactly how this works in your model, but you will get the idea from the syntax) - the Visible property of the relevant control
vGroup = YourTextBox.Text &&
vGroup = WhateverGroupIsAllowed
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.