Forum Discussion
griffinst
1 year agoHelper I
Show project description on hover
I want to show the project description field in a pop-up or tooltip only when they hover over the project name in a table in power bi. So if they hover over Project 1, they should see the Project...
- 1 year ago
Hello, griffinst ,
crate dimension with project name and description:
create tooltip page:
value for the card is this:
project_desc = SELECTEDVALUE(project[desc])and then in your main page, in your visual set up tooltip as Page:
and that's it, make sure you use Dimension in the Table visual then.
vojtechsima
1 year agoSuper User
Hello, griffinst ,
crate dimension with project name and description:
create tooltip page:
value for the card is this:
project_desc = SELECTEDVALUE(project[desc])and then in your main page, in your visual set up tooltip as Page:
and that's it, make sure you use Dimension in the Table visual then.