Hi All
how i do this, i need to add a personalized value into a Items propertie wich is result from formula. something like this:
["Item_personalized";
Proper(
Sort(
Distinct(
Filter(
colecaotudo;
'Planned to' > 0
);
Year('Planned to')
);
Result <> Blank();
Ascending
)
)]
i know this works
["item1";"item2";"item3":"Item4"]
and this isolated works too
Proper(
Sort(
Distinct(
Filter(
colecaotudo;
'Planned to' > 0
);
Year('Planned to')
);
Result <> Blank();
Ascending
)
)
if i try this :
Concatenate(
Proper(
Sort(
Distinct(
Filter(
colecaotudo;
'Planned to' > 0
);
Year('Planned to')
);
Result <> Blank();
Ascending
)
);
"Item_Personalized"
)
i have the item 2022Item_Personalized
but i want a list to use on a dropdown.
some idea how to do this?

Report
All responses (
Answers (