Hi all,
I am trying to print the rating of a solution based on the Solution Version and Solution Name selected. I have a table that includes columns for the Solution Version, Solution Name, and Solution Rating.
I am trying to do something like this
First(Sort(Filter('Solution Ratings', 'Rated By'=Office365Users.MyProfileV2().mail && Solution.Name = 'Solution Ratings'.'Solution Name' && Solution.'Solution Version' = 'Solution Ratings'.'Solution Version'),'Created On',Descending))
but I am receiving an error and delegation warning
My label inside my gallery looks like this
If(
Office365Users.MyProfileV2().mail in 'Solution Ratings'.'Rated By',
"Previous Rating: " & ThisItem.'Solution Rating',
"Submit your first rating for this solution"
)
Is there a way to print out the users previous ratings based on the Solution and Version selected in the previous screen?