ContributionsMost RecentMost LikesSolutionsRe: More Filters in FdxExecuteDataUnit Probably Data Management Export is your path of least resistance. But the amount of overhead created by passing in Parent and Base members in a filter for the same dimension will definitely increase...Re: Can we make consolidation process faster? Hi HoneyGulati If you are already using C#Aggregated then you are already only aggregating the data e.g skipping consolidation overhead So for any further gains, it might be worth investigating...Re: More Filters in FdxExecuteDataUnit You can achieve your use case with the FDX Extended solution I mentioned earlier on this post, this will Group (aggregate) this data for you for a given Dimension e.g. A#. However since you want...Re: More Filters in FdxExecuteDataUnit Does your DataTable return any rows when you pass in an empty string as a filter e.g. dt = BRApi.Import.Data.FdxExecuteDataUnit( si, "Total_Magna", ' Cube name "E#Par...Re: More Filters in FdxExecuteDataUnit Also please take care with the ParallelQueryCount variable. You have set yours to be 100,000! This cannot exceed 128. I would recommend setting this at a safe level of something like 8 Similarl...Re: Business Rule within the Import Step I agree with T_Kress , there is also an old blog post that details exact setup steps for this No Calc To Calc - Black Diamond Advisory Re: More Filters in FdxExecuteDataUnit FYI - there is also a solution available on Solution Exchange (CommunitySolutions) called Fast Data Extract Extended, that does exactly this filtering for you of the non Data Unit Dimensions e.g. A#-...Re: More Filters in FdxExecuteDataUnit Hi Bella_Yu There are already a few posts on this on OneCommunity e.g. Account filter in FdxExecuteDataUnit | OneStream Community In short, your entire filter must be valid; else the BRApi retu...Re: Combobox Multiple select option. Hi Alvaro You can only select 1 member at a time for each dimension in the POV section of a cubeview If you want > 1 member you need to use the rows or columns I hope this helps Sam Re: Losing Dynamic Parameters on Dashboard Refresh Also, FYI you don't necessarily need your private function BuildDynamicComponentFromStoredComponent; we can use the GetComponentUsingBasedOnName method from the ComponentCollection itself e.g. WsD...