Dashboard Mode - FIND and SEARCH
Goal
Find where a word or letter appears in a text to help analyze customer feedback quickly.
Find where a word or letter appears in a text to help analyze customer feedback quickly.
| Customer | Feedback |
|---|---|
| Alice | Great product, fast delivery |
| Bob | Good quality but slow shipping |
| Carol | Excellent support and fast response |
| David | Product arrived damaged |
| Eve | Fast delivery and good packaging |
=FIND("fast", B2) for Alice (returns 15)=SEARCH("Fast", B2) for Alice (returns 15)=IFERROR(FIND("fast", B2), "Not found") copied down rows 2-6=IFERROR(SEARCH("Fast", B2), "Not found") copied down rows 2-6=SUMPRODUCT(--ISNUMBER(FIND("fast", B2:B6))) (returns 2)=SUMPRODUCT(--ISNUMBER(SEARCH("Fast", B2:B6))) (returns 3)+----------------------+-----------------------+ | KPI: FIND Position | KPI: SEARCH Position | | (case-sensitive) | (case-insensitive) | +----------------------+-----------------------+ | Table: FIND Results | Table: SEARCH Results | | Positions or "Not" | Positions or "Not" | +----------------------+-----------------------+ | Summary Counts (case-sensitive and insensitive) | +-------------------------------------------------------------+
Add a filter to select a customer name. When a customer is selected, the KPI cards and tables update to show the FIND and SEARCH results only for that customer's feedback. The summary counts update to reflect how many feedbacks in the filtered list contain the word "fast".
If you add a filter for Customer = "Bob", which components update?