Skip to main content

Using bookmarks and buttons for navigation

Using bookmarks and buttons for navigation in Power BI allows you to create interactive experiences within your reports, guiding users through different views and sections. Let's walk through how to use bookmarks and buttons for navigation:


Step 1: Create Bookmarks

Navigate to the "View" tab:

    • Open your report in Power BI Desktop and navigate to the "View" tab.

Create Bookmarks:
    • Select the elements (visuals, slicers, shapes, etc.) that you want to bookmark.
    • Click on the "Bookmark" button in the "View" tab or right-click and select "Add bookmark".
    • Name your bookmark and ensure the "Data" and "Display" options are selected if you want to capture filter states and visual display states.

Repeat for Additional Views:
    • Create bookmarks for each view or section of your report that you want to navigate to.

Step 2: Create Buttons

Insert Buttons:

    • Go to the "Home" tab and click on the "Buttons" dropdown in the "Insert" group.
    • Choose the button shape you want to use and drag it onto your report canvas.

Customize Button Text:
    • Double-click on the button to enter text mode and type the name of the view or section it represents.

Add Action to Button:
    • With the button selected, go to the "Action" dropdown in the "Visualization" pane.
    • Choose "Bookmark" and then select the corresponding bookmark you created for this view.

Repeat for Additional Buttons:
    • Add buttons for each view or section of your report that you want to navigate to, and assign the appropriate bookmarks to each button.

Step 3: Test and Refine

  1. Test Navigation:

    • Switch to "Reading" mode in Power BI Desktop or publish the report to the Power BI Service to test navigation.
    • Click on the buttons to navigate between different views and sections of your report.
  2. Refine as Needed:

    • Refine the layout, formatting, and interaction as needed based on testing and feedback.

By using bookmarks and buttons for navigation in Power BI, you can create interactive reports that guide users through different views and sections, making it easier for them to explore and analyze the data.

Comments

Popular posts from this blog

Python Topics

Learning Python can be an exciting and rewarding journey, especially given its versatility and widespread use in various fields like web development, data science, automation, and more. Here's a structured guide to help you learn Python effectively, covering essential topics from beginner to advanced levels. Beginner Level Introduction to Python Installation and setup Python syntax and interactive shell Writing and running your first Python script Basic Concepts Variables and data types (integers, floats, strings, booleans) Basic arithmetic operations String operation Comments and documentation Control Structures Conditional statements ( if ,  elif ,  else ) Loops ( for ,  while ) Data Structures Lists Tuples Dictionaries Sets Functions Defining and calling functions Function arguments and return values Lambda functions Built-in functions Modules and Packages Importing modules Standard library overview (e.g.,  math ,  datetime ,  random ) Installing and using external packages

TechUplift: Elevating Your Expertise in Every Click

  Unlock the potential of data with SQL Fundamental: Master querying, managing, and manipulating databases effortlessly. Empower your database mastery with PL/SQL: Unleash the full potential of Oracle databases through advanced programming and optimization. Unlock the Potential of Programming for Innovation and Efficiency.  Transform raw data into actionable insights effortlessly. Empower Your Data Strategy with Power Dataware: Unleash the Potential of Data for Strategic Insights and Decision Making.

SQL Fundamentals

SQL, or Structured Query Language, is the go-to language for managing relational databases. It allows users to interact with databases to retrieve, manipulate, and control data efficiently. SQL provides a standardized way to define database structures, perform data operations, and ensure data integrity. From querying data to managing access and transactions, SQL is a fundamental tool for anyone working with databases. 1. Basics of SQL Introduction : SQL (Structured Query Language) is used for managing and manipulating relational databases. SQL Syntax : Basic structure of SQL statements (e.g., SELECT, INSERT, UPDATE, DELETE). Data Types : Different types of data that can be stored (e.g., INTEGER, VARCHAR, DATE). 2. SQL Commands DDL (Data Definition Language) : CREATE TABLE : Define new tables. ALTER TABLE : Modify existing tables. DROP TABLE : Delete tables. DML (Data Manipulation Language) : INSERT : Add new records. UPDATE : Modify existing records. DELETE : Remove records. DQL (Da