Md_mazahir wrote:
in my actual table i am having almost 30 columns and its not really practical to apply filter in 30 columns each time .
is there any kind of a formula that can be applied on the entire table (except the header column and header row ),
You can add a filter column (which you can hide after you have gotten it working) and filter on that added column.
The formula in F2 of the example, filled or copied down that column, is:
=COUNTIF(B2:E2,"Apple")>0
If your region uses , as a decimal separator use:
=COUNTIF(B2:E2;"Apple")>0
You will of course need to adjust the B2:E2 to match the actual columns you are using in your table.
This will return TRUE if any of the value in any of the cells is Apple. If you want it to also include, say, Apples then you could try adding the wildcard:
=COUNTIF(B2:E2,"Apple*")>0
Then set up the filter on the filter column like this;
SG