Hello, I am looking for insight on how I may be able to create a filter that only uses “AND” and not “AND/OR”. In this screenshot, I box in the values I only want to see. I only want to see the locations where both have dates. The filter currently gives me values regardless of if the other column is empty or not.
I also have over 20 different columns/values that can be selected in the multi-select dropdown. The front end user should be able to select which ever or how ever many solutions/values they want and locations where all values are TRUE should be shown.
Hi @Matteo_Franco and Welcome to the Quick Sight community!
You can accomplish this by creating a calculated field that you’ll then use as your filter. For the calculated field, we will determine that if both T-Stat and HVAC have a date, it will determine that row as ‘yes’.
ifelse(isNotNull({T-Stat}) AND isNotNull({HVAC}), "Yes", "No")
Now we’ll setup the filter using that newly created calc. field. Set the filter condition to ‘Equals’
and the value as ‘Yes’ and null options will be ‘exclude nulls’.