Hi, I have this code to feed a table when toggle = true or False. The toggle name is: LbVisible.
If ( LbVisible.Value = false;
Sort( Filter( INCO_REQUESTS; Status = "Submitted for Action" And Request_Type <> "NO TARIFF" And IsBlank(Email) ); Submitted_Time; Ascending );
Sort( Filter( INCO_REQUESTS; Status = "Submitted for Action" And IsBlank(Email) ); Submitted_Time; Ascending )
)
Now i would like to add Distinct value only, cause right now, i have duplicated rows.
How can i do that?
Thank you