Hi @anubhav29 ,
Firstly, let me explain your issue:
1)entity1 named Customer: CustomerId(number type)
2)entity2 named CustomerAttribute: CustomerId(lookup type)
3)entity1 and entity2 has relationship of 1:N
4)you select one item of entity1, you want to check whether records in entity2 has related CustomerId
Am I right? If I have any mistake, please correct me.
If my assumption is right. Try this:
1)drop down1 for entity1, set drop down1's Items:
Customer
2)insert a label to represent whether there's record in entity has selected CustomerId value. True is yes, false is no.
set the label's Text:
If(
!IsEmpty(Filter(CustomerAttribute,drop down1.Selected.Name in CustomerId.Name)),
true,false
)
Best regards,