Hi all, is there a way to combine an AND statement and a SELECT in one expression?
I’m trying to create a slice based on these two expressions: SELECT(Intentions[Plan ID], [_THISROW].[Life Domain]=[Life Domain]) NOT([Status] =“Realized”)
When I try to combine them with an AND I get an error. Here’s what I’ve tried so far: Version 1: AND(SELECT(Intentions[Plan ID], [_THISROW].[Life Domain]=[Life Domain]), NOT([Status] ="Realized”))
Version 2: AND(NOT([Status] =“Realized”), SELECT(Intentions[Plan ID], [_THISROW].[Life Domain]=[Life Domain])
@praveen Thanks, what I’m trying to do is limit the selection of items for a related child table.
I want the user to be able to create a note entry and relate it to a goal. But I only want them to be able to select from a list of goals that are in any state other than “realized” AND that match the Life Domain ID of the current row.