Hi
I want to make a filter in my report for a column that has a few empty cells. Other cells have the name of products. When I use Data Filter, nothing shows up in the report and I think it is because of empty cells. I tried to exclude them but did not work
Add Filter(
columns( :Entity1, :Entity2, Where( :Entity1 != "" ), Where( :Entity2 != "" ), ),
Display( :Entity1, Size( 120, 100 ), List Display ),
Display( :Entity2, Size( 120, 100 ), List Display )
);
Thanks