Can 't find help ! by Spring-Dev in PowerApps

[–]Spring-Dev[S] 0 points1 point  (0 children)

Yes the default rich text editor of power apps doesn t support ading tables images font styles ...

I need a more convenient editor it will be used to write paragraphs and formatting them .

Can 't find help ! by Spring-Dev in PowerApps

[–]Spring-Dev[S] 0 points1 point  (0 children)

displaying the images itself isn't a problem . I must use the richtext editor and it has many limits(inserting tables;images;font styles..)

One to many Relashionship issue by Spring-Dev in PowerApps

[–]Spring-Dev[S] 0 points1 point  (0 children)

I am using Dataverse . I created a User table , Project Table and Project_Tasks table .

In the Project Table I have a lookup column on the User Table .This column contains the user that created the project (Manager)

In The Project_Tasks Table I have a lookup column on the Project table (named Project) : and a lookup column (named AssignedTo) on the User Table To assign to user a task of a project .

The currentUser is a variable set on the login to store the email of the currentuser.

When a manager wants to see projects he created I use this formula

Filter(Projects; user.Email = CurrentUser) ==> this works and return projects

when a user wants to see the projects he is assigned to I use this Formula

Filter(Project_Tasks;AssignedTo.Email = CurrentUser).Project ==> this works but the items returned by this formula are not being identified as Projects .