
Announcements
i have Tabel with columns (Name - number - Adress). and text input i need when i add in this text ( HAz) column number will be not visible but if i left text input without any word will visible all columns.
Hi @HRawash2,
Should you be using a DataTable control you can select the Number column and set the Visible property to:
//Change TextInput1 to the correct name
TextInput1.Text <> "HAz"
Should you use a Gallery control, set the label's Visible property (within the gallery displaying the Number) to the code above. Should the TextInput not have to match 'HAz' exactly to hide the number column but also e.g. when it simply contains 'haz' use:
!("haz" in TextInput1.Text)
If this solves your question, would you be so kind as to accept it as a solution & give it a thumbs up.
Thanks!