Hi everyone,
I am struggling where to insert the 'Show Results > 0' after the Sum and Filter.
Situtation: I have a column in Dataverse named 'Amount' with transactions like +40, - 40. In PowerApps I have inserted this formula to calculate the current amount in stock for a product and this works perfectly. Now it returns also the 0 values, which I want to Filter out of my Gallery.
Sum(
Filter(
'Stock Transactions',
Stock.'Stock Id' = ThisItem.'Stock Id'
),
Amount
)
Desired outcome: Filter out the values that are 0 or show results > 0. I have tried to insert Amount = 0, but it does not seem to work.