Hi , i have an error on my code.
I have 2 columns, a "BUDGET" column with a drop-down list, and an "CODE_ARTICLE" column with a drop-down list.
I want to create a condition: if the "BUDGET" column = "Masse_salariale", then I want the "CODE_ARTICLE" column to display only the codes that start with "Masse salariale".
Here is my code :
If(DataCardValue1.Selected.Value = "Masse_salariale"; Filter([@'Trame budget programmes courts'].CODE_ARTICLE; StartsWith(CODE_ARTICLE.Value; "Masse salariale")); Choices([@'Trame budget programmes courts'].CODE_ARTICLE)
)
Where is the syntax mistake pls ?