The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
when I use the Document Nr Filter the blue table should move left. I have a DAX for this, but it wont work fine.
How can I make it that the bookmark recognize that there is a filter input, to make move the blue table under the red table?
filter for doc-number = calculate(if(isfiltered(Documentation[Documentation Nr]), 1 , 1 ), allselected())
Here is the sample:
Thanks for help.
Solved! Go to Solution.
Hi @azaterol ,
When you create a bookmark, the following elements are saved with the bookmark:
Unfortunately, bookmarks do not currently support saving the position of the visual. The way I can think of is to create two identical blue table visuals and use bookmarks to save the visibility status.
It might be logically better to hide the slicer under the ALL bookmark.
For such kind of needs, you may also submit an idea in Power BI Ideas: Ideas
It’s a place where the product group collects suggestions from users to improve the features of this product. Thanks in advance!
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
@azaterol , why 1 in both case, one should be 0
filter for doc-number = calculate(if(isfiltered(Documentation[Documentation Nr]), 1 , 0 ), allselected())
Hi @azaterol ,
When you create a bookmark, the following elements are saved with the bookmark:
Unfortunately, bookmarks do not currently support saving the position of the visual. The way I can think of is to create two identical blue table visuals and use bookmarks to save the visibility status.
It might be logically better to hide the slicer under the ALL bookmark.
For such kind of needs, you may also submit an idea in Power BI Ideas: Ideas
It’s a place where the product group collects suggestions from users to improve the features of this product. Thanks in advance!
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data