
Hi there,
I want a condition on a label to display "Incomplete" or "Complete" depending on Dataverse entries.
So
If(Dataverse Source.Name = User().FullName
and
if the column entitled "Reply Status" equals "Complete", display "Complete" in the label, else display "Incomplete"
How can I add this last bit to the condition so that it looks across the dataverse rows?
Thanks
K.
The simple answer depends on what type of column 'Reply Status' is. If it's just a text field, the below should work. If it's a choice column, the answer will be very different.
If(
Dataverse Source.Name = User().FullName && Dataverse Source.'Reply Status' = "Complete"
)