Skip to main content

Designing User-Friendly Overview Screens: Best Practices and Key Features


In software development, we often find ourselves reinventing the wheel—particularly when dealing with higher-level abstractions. As I mentioned in my blog "Unlocking Business Value: Moving Beyond Low-Level Programming", while open source has reduced redundancy at the technical level, user interfaces continue to see many foundational patterns being rebuilt repeatedly.

A classic example is the "Overview" screen, where users search for and interact with a set of data, performing actions like viewing or editing specific results. Each application tends to design this screen differently, often after much debate. To avoid reinventing the wheel every time, it is helpful to develop a reusable checklist of essential features. Although cost constraints may lead to the exclusion of some items, this list ensures conscious decisions are made for each feature.

A typical overview screen is divided into three main parts:

  • Header Section: This includes navigation options (e.g. breadcrumbs, back buttons…​), settings (e.g. user language), and action buttons like "Create/Add" or "Import/Upload," enabling users to create (or update) single or multiple entities.

  • Filtering/Search Block: The area where users define and apply search criteria.

  • Result Block: Where search results are displayed, and users can perform actions on those results.

Let us break down these parts in more detail.

Filtering/Search Block

This section allows users to specify search criteria and refine their results. It typically includes four key elements:

  • Filters and Search Criteria: Ranging from simple text searches to complex multi-criteria filters.

  • Save and Retrieve Options: The ability to save filters, recall stored ones, categorize them, and share with others. You may also include templates for predefined filters that prompt users to input specific variables.

  • Clear Button: A simple feature that resets all active filters.

  • Applied Filter Overview: Displays the currently selected filters, with options to remove or modify them.

When designing the filtering section, consider the type of filtering required. Several filtering options exist:

  • Text search: Users enter free text to return results that contain a specific string.

  • Tag filtering: Clicking on a tag or category to apply a filter automatically.

  • Drill-down filtering: Starting with a broad filter (e.g. years), users can click to narrow down dynamically (e.g. months, then days).

  • Selection Filters: Users define filters based on specific attributes, which can range from simple to very complex.

  • Advanced Filters: Using a predefined scripting language (e.g. SQL or a domain-specific language) for custom filtering.

Additionally, you will need to address other concerns like:

  • Allowing single or multiple filter values, including "include" or "exclude" modes.

  • Whether to support wildcards, fuzzy searches, and operators (like <, >, ⇐, >=…​) for numeric or date filters.

  • Options for relative date filters (e.g. "Last 7 days", "Current month" or "Last Year").

  • The combination of multiple filters using operators like AND, OR, and NOT.

Result Block

The result block is the core of the overview screen, where users spend most of their time. It is essential to avoid overcrowding this section with too much header or filter content to maximize the workspace for interacting with data.

The result block can be divided into these key components:

  • Quick Suggestions, Carousels and/or Banners: These could include personalized recommendations, marketing banners, dynamic carousels, or even data visualizations (e.g. statistics or charts) related to the search results.

  • Result Configuration and Result Actions:

    • Toggle between different view types (list, grid, map…​).

    • Customize the number of results per page.

    • Export data with various options (e.g. output type XLS, CSV or PDF, current page or all pages, and column configuration).

    • Perform bulk actions like deleting or approving multiple results at once, often with a “Select/Deselect All” option.

  • Result Statistics: Display the total number of results, total pages, and the current page number for better user context.

  • Result Overview: The core table or other display formats (e.g. tile or map views) where data is shown.

    • Column Customization: Allow users to rearrange, resize, and sort columns. Multi-criteria sorting is valuable, as are actionable columns (e.g. flagging items as favourite or important, selecting for bulk actions or doing direct edits in the result set).

    • Column Header: Show column names and sorting status, with the headers remaining fixed when scrolling.

    • Paging or Infinite Scrolling: Paging is traditional, where users click through pages, while infinite scrolling loads more results as users scroll down. Infinite scrolling can offer a smoother experience when implemented with pre-loading techniques to avoid delays.

    • Rows: The rows correspond to the search results, and various actions can typically be performed on each row.
      The most common action occurs when clicking on a row, which often opens a "View details" screen for that entry. However, different behaviors may be assigned depending on how the user interacts with the row. For example, some implementations may differentiate between a single click, double click, or right click. In some cases, clicking on a specific column within the row may trigger additional functionality. For instance, clicking a column might open a dialog that applies a filter based on that column’s attribute, allowing users to either select all records with matching values or exclude those values from the result set.
      Additionally, contextual actions are often available at the end of each row. These may be presented as an action menu with various options or as individual icons. The specific actions that are visible or enabled depend on the user’s role and the characteristics of the returned results. Common actions include view, edit, delete, approve, reject, print, comment, attach a document, or clone/duplicate the entry.

Non-Functional Considerations

Beyond functionality, non-functional aspects like performance, security, and usability are crucial for a seamless experience.

  • Performance: obviously you want to ensure that a user gets a search result as quickly as possible and avoid that a user launching a heavy query brings down the platform (or negatively impacts the stability and performance of the system for other users). Many tricks exist for this:

    • Smart Filtering: Limit heavy filters like wildcards and ensure proper indexing

    • Caching: Cache data or search results to improve performance, balancing performance, infrastructure costs and freshness of the search results.

    • Asynchronous Exports: Large exports can be handled in the background, allowing users to continue working.

    • Time-out Management: Both front-end and back-end time-outs should be handled properly to avoid overloading the system.

    • Paging: Paging helps limit resource consumption by returning only a subset of the data at a time. The way paging is implemented significantly impacts performance. For instance, if the system retrieves all results but only sends one page to the API, the gain is limited to reduced network load and faster rendering in the user interface. However, the performance benefit is minimal in terms of data retrieval.
      For optimal performance, paging should be applied at the data retrieval layer itself. This ensures that only the necessary subset of data is fetched from the database, resulting in more substantial performance improvements.

    • Avoid double click: Users often click "Search," "Next/Previous page," or other buttons (e.g. sorting arrows) multiple times if they do not see immediate feedback. This can result in duplicate requests being sent to the back-end, potentially overloading the system. To prevent this, it is recommended to temporarily disable the button or action after it is clicked and re-enable it only once the action is complete.

  • Data Consistency:

    • Maintaining consistent data can be challenging, especially with continuously changing datasets and when paging is applied. Ideally, all pages should be cached to ensure consistency. If each page is fetched again from the data store and a specific sorting is applied, the composition of pages may become messy—records that appear on page 1 may reappear on page 2 if new data is added to page 1 in the meantime.

    • The same principle applies to action buttons, whose visibility may depend on certain attributes. If an attribute that enables an action changes between data retrieval and when the user clicks the button, the system should handle this gracefully and display an appropriate error message if the action can no longer be performed.

  • Security and Auditing:

    • It is crucial that the overview screen and all associated actions are protected by authorization profiles, ensuring that only users with the required permissions can access the screen and perform specific actions.

    • Data segregation: The results displayed in the overview screen should be limited to the data the user is authorized to view. If horizontal data segregation is applied, certain columns might need to be hidden or disabled for users without permission to view those attributes.

    • Filter visibility should also be configurable based on user roles. Not all filters are relevant to every user, so it may be helpful to hide certain filter criteria for specific user groups and customize the order or grouping of filters. This way, each user can search in a way that is optimized for their role.

    • Auditing and tracking: Log all searches executed by users, as well as which results were returned. Additionally track the filters users applied to better understand their search behavior.

  • Usability and Mobile Responsiveness:

    • Responsive Design: As applications are increasingly used across a variety of devices, responsive design is critical. Overview screens, in particular, can be difficult to optimize for mobile because they typically present a large amount of data on a single screen. Adaptations will be necessary to ensure a good user experience on smaller devices.
      Common adjustments include:

      • Converting the filter menu into a dialog box that can be opened and closed when applying a filter, preventing it from taking up too much screen space.

      • Displaying results in a stacked view, where multiple lines per result are shown to fit all relevant columns on a smaller screen.

      • Converting paging to infinite scrolling on mobile, which feels more intuitive for mobile users.

      • Replacing action menus with icons to improve clickability on small screens.

    • Persistency of User Settings: Another important usability consideration is whether the settings a user applies, such as Last executed search, Filter configuration, Result configuration or Page Size, should persist across sessions or be reset when the user leaves the screen. Different options like "Keep settings only as long as the current overview screen is open", "Persist settings for the duration of the user’s session" or "Always show the last applied settings, even after the user logs out" exist. The best option depends on the specific use case and user preferences. It is important to handle exceptions properly—such as when a user’s permissions change, or when updates to the application alter available filters—to avoid confusion or errors.

A well-designed overview screen is not just a luxury; it is a critical part of any business application. By incorporating the right features and thinking through non-functional elements like performance and usability, you can provide users with a seamless experience that meets their needs while also optimizing system performance.

For more insights, visit my blog at https://bankloch.blogspot.com

Comments

Popular posts from this blog

Transforming the insurance sector to an Open API Ecosystem

1. Introduction "Open" has recently become a new buzzword in the financial services industry, i.e.   open data, open APIs, Open Banking, Open Insurance …​, but what does this new buzzword really mean? "Open" refers to the capability of companies to expose their services to the outside world, so that   external partners or even competitors   can use these services to bring added value to their customers. This trend is made possible by the technological evolution of   open APIs (Application Programming Interfaces), which are the   digital ports making this communication possible. Together companies, interconnected through open APIs, form a true   API ecosystem , offering best-of-breed customer experience, by combining the digital services offered by multiple companies. In the   technology sector   this evolution has been ongoing for multiple years (think about the travelling sector, allowing you to book any hotel online). An excelle...

RPA - The miracle solution for incumbent banks to bridge the automation gap with neo-banks?

Hypes and marketing buzz words are strongly present in the IT landscape. Often these are existing concepts, which have evolved technologically and are then renamed to a new term, as if it were a brand new technology or concept. If you want to understand and assess these new trends, it is important to   reduce the concepts to their essence and compare them with existing technologies , e.g. Integration (middleware) software   ensures that 2 separate applications or components can be integrated in an easy way. Of course, there is a huge evolution in the protocols, volumes of exchanged data, scalability, performance…​, but in essence the problem remains the same. Nonetheless, there have been multiple terms for integration software such as ETL, ESB, EAI, SOA, Service Mesh…​ Data storage software   ensures that data is stored in such a way that data is not lost and that there is some kind guaranteed consistency, maximum availability and scalability, easy retrieval...

IoT - Revolution or Evolution in the Financial Services Industry

1. The IoT hype We have all heard about the   "Internet of Things" (IoT)   as this revolutionary new technology, which will radically change our lives. But is it really such a revolution and will it really have an impact on the Financial Services Industry? To refresh our memory, the Internet of Things (IoT) refers to any   object , which is able to   collect data and communicate and share this information (like condition, geolocation…​)   over the internet . This communication will often occur between 2 objects (i.e. not involving any human), which is often referred to as Machine-to-Machine (M2M) communication. Well known examples are home thermostats, home security systems, fitness and health monitors, wearables…​ This all seems futuristic, but   smartphones, tablets and smartwatches   can also be considered as IoT devices. More importantly, beside these futuristic visions of IoT, the smartphone will most likely continue to be the cent...

AI in Financial Services - A buzzword that is here to stay!

In a few of my most recent blogs I tried to   demystify some of the buzzwords   (like blockchain, Low- and No-Code platforms, RPA…​), which are commonly used in the financial services industry. These buzzwords often entail interesting innovations, but contrary to their promise, they are not silver bullets solving any problem. Another such buzzword is   AI   (or also referred to as Machine Learning, Deep Learning, Enforced Learning…​ - the difference between those terms put aside). Again this term is also seriously hyped, creating unrealistic expectations, but contrary to many other buzzwords, this is something I truly believe will have a much larger impact on the financial services industry than many other buzzwords. This opinion is backed by a study of McKinsey and PWC indicating that 72% of company leaders consider that AI will be the most competitive advantage of the future and that this technology will be the most disruptive force in the decades to come. Deep Lea...

A bank account - A concept of the past

Almost every recent article written about banking starts with the statement that the   banking industry is being disrupted   by new competitors, new innovations and new technologies. Although this statement is definitely true, the extend of the disruption can still be debated. Even the most innovative neo-banks still work with bank (current, saving, term and investment) accounts, cards (credit and debit), traditional credits, existing payment infrastructure…​ The user experience surrounding the origination and servicing of these products has dramatically improved (and will continue to evolve), but the underlying banking products are not really disrupted. You could argue that banking products are so intertwined with society and our way of thinking about finance, that they can’t be disrupted, but looking at those products you cannot ignore that they are far from an optimal solution in our current digital world. Let’s consider   cards   for example. Isn’t ...

An overview of 1-year blogging

Last week I published my   60th post   on my blog called   Bankloch   (a reference to "Banking" and my family name). The past year, I have published a blog on a weekly basis, providing my humble personal vision on the topics of Fintech, IT software delivery and mobility. This blogging has mainly been a   personal enrichment , as it forced me to dive deep into a number of different topics, not only in researching for content, but also in trying to identify trends, innovations and patterns into these topics. Furthermore it allowed me to have several very interesting conversations and discussions with passionate colleagues in the financial industry and to get more insights into the wonderful world of blogging and more general of digital marketing, exploring subjects and tools like: Search Engine Optimization (SEO) LinkedIn post optimization Google Search Console Google AdWorks Google Blogger Thinker360 Finextra …​ Clearly it is   not easy to get the necessary ...

Peer-to-peer payments - A crucial component towards a cashless society

The Corona crisis has led to an exponential   decrease in the usage of cash , due to the associated hygienic problems and the enormous rise of eCommerce. While in commercial transactions cash is disappearing rapidly, it is however still commonly used for   informal money exchanges , like between friends, family, colleagues…​, but also those payments are becoming more and more digital, thanks to   peer-to-peer payment (P2P) solutions . These solutions drastically   improve the user experience   (removing friction) for both the person initiating the payment (= the payer) and the person receiving the payment (= the recipient), compared to a simple initiation of a wire transfer in a banking app. Before clarifying where those solutions bring most value, it is important to first identify the   typical use cases , where peer-to-peer payments are most common, as the P2P payment solutions need to optimally accommodate these use cases: Family giving a   cash gif...

The UPI Phenomenon: From Zero to 10 Billion

If there is one Indian innovation that has grabbed   global headlines , it is undoubtedly the instant payment system   UPI (Unified Payments Interface) . In August 2023, monthly UPI transactions exceeded an astounding 10 billion, marking a remarkable milestone for India’s payments ecosystem. No wonder that UPI has not only revolutionized transactions in India but has also gained international recognition for its remarkable growth. Launched in 2016 by the   National Payments Corporation of India (NPCI)   in collaboration with 21 member banks, UPI quickly became popular among consumers and businesses. In just a few years, it achieved   remarkable milestones : By August 2023, UPI recorded an unprecedented   10.58 billion transactions , with an impressive 50% year-on-year growth. This volume represented approximately   190 billion euros . In July 2023, the UPI network connected   473 different banks . UPI is projected to achieve a staggering   1 ...

From app to super-app to personal assistant

In July of this year,   KBC bank   (the 2nd largest bank in Belgium) surprised many people, including many of us working in the banking industry, with their announcement that they bought the rights to   broadcast the highlights of soccer matches   in Belgium via their mobile app (a service called "Goal alert"). The days following this announcement the news was filled with experts, some of them categorizing it as a brilliant move, others claiming that KBC should better focus on its core mission. Independent of whether it is a good or bad strategic decision (the future will tell), it is clearly part of a much larger strategy of KBC to   convert their banking app into a super-app (all-in-one app) . Today you can already buy mobility tickets and cinema tickets and use other third-party services (like Monizze, eBox, PayPal…​) within the KBC app. Furthermore, end of last year, KBC announced opening up their app also to non-customers allowing them to also use these thi...

Marketplaces in the financial industry - Here to stay?

Marketplaces are   hip and trendy   on the internet and will likely evolve even more in the near future. In some markets (like food delivery, transportation, commerce, holiday…​) they already represent double digit market shares (e.g. in 2018 $1.86 trillion was spent globally on the top 100 online marketplaces), but for the financial services sector, their impact (even though there are a few unicorn FinTechs in this space) on the industry is still limited. Any form of   intermediation   (travel agents, taxi dispatchers…​) will likely be replaced by a modern, digital and more direct equivalent, i.e. a digital marketplace. As the business of banks is exactly the intermediation between people having excess money and people needing money, the financial services sector will be significantly impacted. Furthermore, marketplaces are strongly intertwined with other concepts like the   gig-economy, the sharing-economy and the API-economy . All these trends will ultimately...