Set a button card to open another dashboard view. How to?

I have a buton card that I would like to have the action when pressed to send the user to another dashboard. This dashboard would ideally be hidden, as in not displayed in side bar. How do I need to structure the URL to get this button send to another page. I have been tinkering with it but cant make it work. I do notice that when I put a URL to a button it opens a new webpage tab on my browser. I just want one button to send the user to a different page in lovelace. Can someone tell me how I can accomplish this?

Create a new view in your dashboard (if you’re using the latest version of HA, you can set it as a subview), otherwise just set it not to be visible to any users (it stops them seeing an icon in the dashboard, but doesn’t stop them getting to it by url.)

Then set a Navigate tap action on your button.

        tap_action:
          action: navigate
          navigation_path: /lovelace-*dashboardName*/*viewName*

gui:

1 Like

works perfectly. THank you very much!

1 Like