Complete the code to create a bookmark that saves the current filter state.
Bookmarks pane > [1] > AddTo save the current filter state, you click New Bookmark in the Bookmarks pane.
Complete the code to update an existing bookmark with the current filter state.
Select bookmark > [1]To save changes to an existing bookmark's filter state, use the Update option.
Fix the error in the DAX expression to create a measure that shows if a bookmark is selected.
IsBookmarkSelected = IF(SELECTEDVALUE(Bookmarks[Name]) = [1], 1, 0)
The bookmark name must be a text string in quotes in DAX, so use "CurrentBookmark".
Fill both blanks to create a bookmark that captures filters and visuals but not the display state.
Create Bookmark > Options: [1] = ON, [2] = OFF
To save filters and visuals, turn Data ON and Display OFF.
Fill all three blanks to write a DAX measure that counts how many bookmarks have the word 'Sales' in their name.
SalesBookmarksCount = CALCULATE(COUNTROWS(Bookmarks), FILTER(Bookmarks, SEARCH([1], Bookmarks[Name], 1, [3]) [2] 0))
The SEARCH function looks for the text "Sales". If the result is greater than 0, it means 'Sales' is found.