How can hide empty row?

Hello,

How can hide the header of column when user does not answer the question?

The header of a view is not an action that is handled at the row level, as I understand it.

However, if you are referring to the “display name” of the field you use as a header, for example, a label, you can use an IF() expression

IF(ISBLANK([_THIS],TEXT(" "),“header”))

If the quotes are together it might not work, if you leave a space between them it will probably work.

1 Like

hello,

i try it and didn’t work sorry for late reply

@Gustavo_Eduardo

If the column’s Show? option is enabled, AppSheet will usually hide the column if its value is blank. If the column has a Show? expression, that expression must handle a blank column value. I commonly use this in my Show? expressions:

OR(
  ISNOTBLANK([_THIS]),
  ("Form" = CONTEXT("ViewType"))
)
2 Likes

it works well when i do not have any condition but if i have other condition the header still showing why? @Steve

Why do you think that should work?

i try it without :[Does Need Spare parts?]=“Yes”

and it work when put at the expression it show

@Steve

AND()

1 Like