ContributionsMost RecentMost LikesSolutionsRe: Pass through external parameters into dynamic cube view services I was able to get this to work using args.CustomSubstVars. Dim entity As String = Nothing Dim CustomSubstVars As Dictionary(Of String,String) = args.CustomSubstVars For Each var In CustomSubstVar...Re: Losing Dynamic Parameters on Dashboard Refresh I could not resolve the issue and went with a traditional route. Everything worked as expected when i hard coded the parameter, so i believe the issue was with passing in the parameter values on a re...Re: Update make dashboard table formatting dynamic from BR I believe the formatting can only apply to all rows, so you wouldn't be able to have differing formatting between rows with different tags. I would recommend creating a button that pulls open a dial...Re: Losing Dynamic Parameters on Dashboard Refresh Hi Sam, Appreciate your help! I am not modifying the bound parameter in GetDynamicComponentsForDynamicDashboard method. If I modify the bound parameter name, then I don't retrieve any parameters in ...Re: In Sheet Action Buttons Disappearing/Greyed Out Thanks!! Losing Dynamic Parameters on Dashboard Refresh Hello, I would be very grateful if someone could offer some direction on fixing the issue of dynamically generated parameters disappearing on a refresh action. When the dashboard initially lo...SolvedRe: In Sheet Action Buttons Disappearing/Greyed Out Unfortunately no Re: Business Rule | One-to-One Transformation - E# Parent to its first E# Base I believe something like this should work within a complex expression on a transformation rule (did not test). The dimension name logic may need some tinkering and I am not sure about the order of th...Re: Automate Excel workbook refresh I have done this using VBA. Below is an example, the design and reference guide has the available subroutines like RefreshCubeViewsForActiveWorkSheet or RefreshCubeViews. If you cant pull everything...Re: Text field of Entity dimension in cube view If your using text2 then you would need to change it. It is, you will just need logic to clean the string. Something like this should work. Dim textVal As String = api.Entity.Text(EntityID, 1, Fals...