Hi @mavako,
Based on the issue that you mentioned,do you want to hide the data card if there is some empty field in a record?
Could you please share a bit more about the scenario, is this a Display Form in your app?
If so, I think you should set the Visible property of each data card.
Firstly, you should check if the current field in the record is empty, if it is, then the data card will be invisible.
Not sure the column type of you each field, I just list an example as below.
Assume that you have a Text field, please set the Visible property of the data card as below
If(!IsBlank(ThisItem.TextField),true,false)
If you have other column types like Choice or Person, Date and time, you should modify the formula as below:
If(!IsBlank(ThisItem.ChoiceField),true,false) // For Choice type
If(!IsBlank(ThisItem.PersonField),true,false) //For Person type
If(!IsBlank(ThisItem.DateField),true,false) //For Date and time type
Hope it could help you.
Regards,
Qi