ContributionsMost RecentMost LikesSolutionsRe: Identify unused Cube views Looks like you cannot link directly to it, but it may be on the 2nd page of OpenPlace. The pages are on the bottom of the screen. Re: Dashboard to refresh workflow POV after executing data management sequence Are you changing the Workflow POV through the buttons "POV Action" properties or are you doing it through a BR? Can you share more screenshots with the setup of the button and any BRs? Re: Bulk Delete Members On OpenPlace, there is a solution named Unused Member Analysis (UMA) which allows a user to view members across the dimension types which do not have data. Additionally, you can check whether the mem...Re: Scenario - Same value every year for specific account This is untested, but should get you what you need: Dim curTimeId As Integer = api.Pov.Time.MemberId Dim lastPerPYId As Integer = api.Time.GetLastPeriodInPriorYear(curTimeId) Dim lastPerPY As Str...Re: How To Sort Dashboard Parameters AlphaNumerically Without Specifying Sort Order - Example Code Thanks Robb, good clarification - it is alphanumeric, not natural. Re: How To Sort Dashboard Parameters AlphaNumerically Without Specifying Sort Order - Example Code This has been fixed in v8.1. Re: Identify unused Cube views You can download the Run Statistics utility from OpenPlace on the solution exchange. It will tell you the last run time of every CV. Re: How to bring attribute "Text" fields value into a Cube View Hello - you should just be able to change the code to reference Account (or another dimension) as well as the particular text field you are looking to retrieve: Dim acct As String = api.Pov.Account...Re: Display Parameters with their description in report Use double exclamation marks:|!!Divisor!!| Re: Member formula - Account Type Alternatively, you could use this below: If api.Account.GetAccountType(api.Pov.Account.MemberId) = AccountType.Revenue OrElseapi.Account.GetAccountType(api.Pov.Account.MemberId) = AccountType.Expe...