Dashboard: Combo box with bound parameter
Hi, I have set up a combo box that uses Bound List parameter "WfProfile_AssignedEntities" with defaul value WFProfile_AssignedEntities. Even though the default value is set, when I use it in the dashboard, it default to empty space and a drop-down where I need to pick up my workflow profile assigned entity. How can I make to show a workflow entity without needing to go in drop-down and pick up it from there?22KViews0likes47CommentsWFProfileEntities Dropdown Menu Order
Hi everyone, I have a cube view that uses an entity parameter with member filterE#Root.WFProfileEntities for users to select their respective workflow entities when opening the cube view. However, the list of entities depending on the workflow chosen is quite large and the order of entities in the dropdown seems to be random, when I was hoping the order would mirror the entity assignment order in the workflow section. Would anyone have any suggestions on how to organize entity dropdown list as per workflow entity assignment? Thank you, RoyceSolved7.7KViews0likes11CommentsCube View Parametric driven column
I have a cube view that I need to modify so that in the second column we are getting data that is driven by the selection that the user makes for the first column. For example if the user selects a forecast for February to be in the first column, then the second column of the cube view would have to be the previous month’s forecast. Do you have any suggestions on how to achieve this view? Thank you in advance for any help and suggestions! I am going to attach some views of what I have in here so far (The second column reads OP plan as I have copied this view from another similar Cube View).Solved7.3KViews0likes11CommentsUnable to open shared Cube View
Hello, We are trying to use row and column templates in a Cube View but are using parameters to populate the names of those row and column template cube views. We get the below error and are curious what else could be issue as we have checked values of parameters and they are pulling in values expected (names of templates). Thanks!Solved5.8KViews1like8CommentsCreate a dependent dropdown list in SQL Table Editor
Hi, Is it possible to create a dependent dropdown list using a SQL Table Editor? Example below: If I select Entity A in the Entity column, I would like PC1, PC2 to be options within the Profit Centre column. If I select Entity B in the Entity column, I would like PC3, PC4 to be options within the Profit Centre column. I have tried using 'Selection Changed Server Task' to update a Literal Parameter that I can use as a basis for a Bound List parameter that I am attaching to the Profit Centre column , however this only appears to work after the row has been saved: I think it may be possible if the user was to save the row after choosing the Entity and then selecting a Profit Centre, but this wouldn't be an ideal user journey. Thanks, MarkSolved5KViews1like10CommentsDefault Value of a Delimited List Parameter Not Working
Hello Everyone, I am using a Delimited List Parameter which results a list of comma separated values from SQL throughXFBR. When i use this parameter in Dashboard, it always shows as blank when it starts up, even though i have set the default value property. Looks like its a limition at this point of time. Are the any alternate ways we can use the default value forDelimited List Parameter in Dashboards ?4.8KViews0likes9CommentsHow can we make header as bold and increase the header size in both report & excel?
Dear Community, We have a requirement to make all the headers in report as well as in excel to make it bold and to increase the size. Here, I wrote a Business Rule function in Cube View Extender to make the change. But, I see it's getting reflected for only one of the headers in the report. Here, I'm attaching the images for the reference. Any solutions to this are really appreciated. Thanks. --This is what I have given in the report header. -- And this is the output when generating the report. This bold needs to be applied to all the headers given here. -- This is the output when I'm viewing it in the excel format. No changes are seen here. -- Cube View Extender Business Rule which I used.Solved4.4KViews0likes5CommentsMember Dialog Parameter Type in a Dashboard
Hi everyone, Quick question re Dashboards. When you use a parameter in a Cube View there is an option to display the Member Filter using a "Member Dialog" Parameter Type. This shows you the results in a hierarchy that can be expanded or collapsed. When building an interactive dashboard I need to present the user with a large number of members to select from. The Combo Box option isn't particularly easy to browse through as it simply lists the members (albeit this can be indented with a BR to imply the hierarchichal relationships). Is there a way of replicating the Member Dialog Parameter Type in a Dashboard component? Regards, LeeSolved4.3KViews0likes3CommentsHow to Achieve dynamic data retrieval: Current month + 12 months prior using SQL in Dashboards
Hi All, I am currently facing a challenge with my SQL code in dashboards and would greatly appreciate your help in finding a solution. The issue at hand is that I have hardcoded the code to pull data from tables, but now I need to modify it so that when a user selects a specific month (e.g., 2023M1), the dashboard displays data for the selected month as well as the 12 months prior to it. To provide more context, here is the query I am currently using: SELECT ISNULL(Name, 'Total |!SelectAcc!|') AS Name, SUM(CASE WHEN Period = '2022M12' THEN |!SelectAcc!| END) AS '2022M12', SUM(CASE WHEN Period = '2022M11' THEN |!SelectAcc!| END) AS '2022M11', SUM(CASE WHEN Period = '2022M10' THEN |!SelectAcc!| END) AS '2022M10', SUM(CASE WHEN Period = '2022M9' THEN |!SelectAcc!| END) AS '2022M9', SUM(CASE WHEN Period = '2022M8' THEN |!SelectAcc!| END) AS '2022M8', SUM(CASE WHEN Period = '2022M7' THEN |!SelectAcc!| END) AS '2022M7', SUM(CASE WHEN Period = '2022M6' THEN |!SelectAcc!| END) AS '2022M6', SUM(CASE WHEN Period = '2022M5' THEN |!SelectAcc!| END) AS '2022M5', SUM(CASE WHEN Period = '2022M4' THEN |!SelectAcc!| END) AS '2022M4', SUM(CASE WHEN Period = '2022M3' THEN |!SelectAcc!| END) AS '2022M3', SUM(CASE WHEN Period = '2022M2' THEN |!SelectAcc!| END) AS '2022M2', SUM(CASE WHEN Period = '2022M1' THEN |!SelectAcc!| END) AS '2022M1', SUM(|!SelectAcc!|) As 'TOTAL' FROM ( SELECT Name, |!SelectAcc!|, Period FROM Account_TABLE WHERE Period IN ('2022M12', '2022M11','2022M10', '2022M9','2022M8','2022M7', '2022M6','2022M5', '2022M4','2022M3', '2022M2','2022M1') UNION SELECT Name, |!SelectAcc!|, Period FROM Second_TABLE WHERE Period IN ('2022M12', '2022M11','2022M10', '2022M9','2022M8','2022M7', '2022M6','2022M5', '2022M4','2022M3', '2022M2','2022M1') ) AS a GROUP BY Rollup (Name) ORDER BY CASE WHEN ISNULL(Name, 'Total |!SelectAcc!|') = 'Total |!SelectAcc!|' THEN 1 Else 0 END, ISNULL(Name, 'Total |!SelectAcc!|') As you can see, the query currently involves hardcoding all the 12 months prior to the selected month, which is not an efficient and scalable approach. I am looking for a solution that allows for dynamic retrieval of data, enabling the display of the current month and the 12 months preceding it. For example, if a user enters "2023M1," the dashboard should show data for 2023M1 as well as all the 12 months prior to it. If anyone could provide guidance, suggestions, or insights on how to modify this query to achieve the desired dynamic retrieval of data, I would be immensely grateful. Thank You, Rithik4.1KViews0likes7Comments