Hi,
I want to get my items for a gallery from a dataverse table but manually add one item. How is this possible?
My code to get the items from the table is:
Distinct(Filter(TableName;Formula);Formula)
Now I just want to add one item, for example "test"
I already tried:
Distinct(Filter(TableName;Formula);Formula) & "test"
and I also tried:
Distinct(Filter(TableName;Formula);Formula) & ["test"]
But it did not work. Do you have any idea how to make it possible?
Thanks for your help!