I am using a Table for the Items property of a gallery:
Table(
{
Date: Today(),
Status: "Pending"
},
{
Date: Today(),
Status: "Pending"
}
)
This works as expected, but I am trying to conditionally show/hide items to be displayed in the gallery. I noticed that if I add a condition around one of items in the table, it still adds the item but it's blank.
Is there any way to completely ignore adding the item to the table? I want there to truly only be one record shown in the gallery that displays this table. This example below will show two items, one with fields shown (first) and one without.
Table(
{
Date: Today(),
Status: "Pending"
},
If(
true = false,
{
Date: Today(),
Status: "Pending"
}
)
)

Report
All responses (
Answers (