I am trying to hide a column "initial deliver...

I am trying to hide a column “initial delivery quantity” in a deliveries form if it is the second or any subsequent delivery to the same address( a key value). The idea being when you pick the delivery address from the dropdown menu on the delivery form, it will hide the “initial delivery quantity” from the form if I’ve delivered their before. Can’t get me head round the problem. Can anyone help? Tried this in the show_if section:

COUNT(SELECT(Deliveries[Product], [Address] = [Address Name]))=0

“Address” in the Deliveries table and is a REF to “Address Name” in the customer table

0 3 317
3 REPLIES 3

How about COUNT(SELECT(Deliveries[Product], [Address] = [_THISROW].[Address Name]))=0

Worked a treat, thanks Alkio.

You’re welcome

Top Labels in this Space