ContributionsMost RecentMost LikesSolutionsRe: How to include Member IDs in data export Sam provides a good example for using a lookup to get the member id column you need. Here are a few things I might add: Loop over the rows instead of hard coding them - this makes the code adaptab...Re: Change View POV inside Custom Calculate BR If you're sure your calcs will always use V#Period, then V#YTD, consider just hard-coding the values and be done with it. Simple is often better. Post your code if you need a little help making i...Re: Fetching text property by time Whilst the code you posted is a bit inefficient, I can't see a reason this loop would take 10 minutes unless you're running the insert query on every iteraton of the loop. Here are some ways you mi...Re: Fetching text property by time The code in the green box should be (no quotes around date): Dim strDate as String = $"{year}M{month}" Dim timeID As Integer = TimeDimHelper.GetIdFromDate(strDate) Also, you should not give ...Re: Dynamically change the dashboard layout Curious if your reference to XAML is based on experience with WPF? Re: Cube Views Copying into Default Workspace Def not expected behavior. What version are you on? Its possible this could happen in the late 7x releases, maybe 8.0 when Workspaces were evolving into the culture. Re: How to include Member IDs in data export Its strange that OS with their love of Guids, PKs, and Ids would only extract string names in FDX. I suspect its not a big ask for a feature to optionally include ID columns in the FDX library fun...Re: GetDynamicAdaptersForDynamicComponent It appears be used to get your Adapter object inside another Adapter by its name: string adapterName = "someAdapter"; WsDynamicAdapterCollection collection = GetDynamicAdaptersForDynamicComponent...Re: Intellisense on Custom Code FabioG, Unfortunately you've reached the limit of the Business Rule source code editor's intellisense. I also find that it is not introspective when looking at instantiated objects coded in a differ...Re: Error in Business Rule for Data Mgmt Process I agree with chul . You need defaults for when a user is not running the job. This updated code will do that, be sure to edit the defaults as indicated in the comments: Public Function Main(B...