If I have many dashboard. Iwant to press the number 10 on the Home page and switch to page 10 like the picture below. how can i do it?

You can use a grid card and buttons and simply set the tap action to navigate to a page.
You can of course use custom buttons, mushroom cards etc for what every look you are going for.

For example:

 square: true
columns: 5
type: grid
cards:
  - show_name: true
    show_icon: false
    type: button
    tap_action:
      action: navigate
      navigation_path: /lovelace/your page name goes here
    name: '1'
    hold_action:
      action: none
  - show_name: true
    show_icon: false
    type: button
    tap_action:
      action: navigate
      navigation_path: /lovelace/your page name goes here
    name: '2'
    hold_action:
      action: none
  - show_name: true
    show_icon: false
    type: button
    tap_action:
      action: navigate
      navigation_path: /lovelace/your page name goes here
    name: '3'
    hold_action:
      action: none
1 Like

My advice would be what @rossk said, but just to name it, there are alternatives like the state-switch card, that can do something similar. It depends on what you’re trying to achieve or better what you want to show on the different pages and how much content that would be. :slight_smile:

1 Like

Thank you so much for your helping. @rossk @paddy0174

1 Like