Listing Values that do not contain value 0

Hi all,

Im struggling with an expression at the minute. I have a MIN/List in which I want to select the lowest value in a list of prices.

However, we may not acquire all prices so we input values of “0.00”. On these occassions the 0 value is the lowest and presents itself.

Is there an expression that can exclude this? I have tried "NOT(CONTAINS) and such but I would have to do that for every column and I’m not sure how it fits in terms of the LIST expression.

2X_f_f2c033de4b2f72b3c1e590c8014b7472b52b8f80.png

2X_d_d598f5f2a1b61741be363d8c8b0b71655fc4473c.png

Solved Solved
0 2 278
1 ACCEPTED SOLUTION

How about:

	MIN(
		(LIST([Oventrop App Price], [Beggs and Partners App Price])
		- LIST(0.00))
	)

View solution in original post

2 REPLIES 2

How about:

	MIN(
		(LIST([Oventrop App Price], [Beggs and Partners App Price])
		- LIST(0.00))
	)

This is great, thank you!

Top Labels in this Space