Hi everyone! My users wanted to be able to share personal bookmarks. I know that that feature doesn't exist yet so went and edited the report from the workspace to add a report bookmark. I was surpised to see that the Add button to be greyed out. Am i missing something? I am the workspace admin.
Thanks in advance!
Solved! Go to Solution.
Hi @meusebio ,
From your screenshot, the report must be in "Reading view" status. You may just click the "Edit report" button to enter into edit status.
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @meusebio ,
From your screenshot, the report must be in "Reading view" status. You may just click the "Edit report" button to enter into edit status.
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi all, what about power bi JS embed?
I am having the same issue there - once i add the bookmark panel to the report using the next code, but the "add" button is always grayed even after i add filters....:
// The new settings that you want to apply to the report.
const newSettings = {
bookmarksPaneEnabled: true
};
// Get a reference to the embedded report HTML element
var embedContainer = $('#embedContainer')[0];
// Get a reference to the embedded report.
report = powerbi.get(embedContainer);
// Update the settings by passing in the new settings you have configured.
report.updateSettings(newSettings)
.catch(function (error) {
Log.log(errors);
});
You're totally right! I though I was in Edit mode but apparently I wasn't. Thank you!