Discuss reporting and cube views.
Recently active
I want to add more filters to my row, just as I have it in my Excel quickview, but from what I saw there is no visual way to add it, so I needed to know how to do this, whether it is through a business rule or another way.
In my cube view, I need a column (% of net sales) to calculate each row/divided by net sales. In the selected column I am trying to only solve for actual. For example actual gross sales/actual net sales, and then actual sales rebates/actual net sales, and so on down my P&L. There must be a way but I have not found anything useful. I'd greatly appreciate any help.
I am using BIViewer within the dashboard. This BIViewer uses a data adapter of Cube View type. Now, every time the dashboard refreshes, the Cube View runs and the task activity shows a Cube View entry. How can i avoid the task activity entry?
I'd like assistance with utilizing a formula within the UD1 dimension section of the attached POV Cube view. Specifically, I am trying to subtract one cost center from another. So the formula I'm hoping for is something like "GPPPFI - GPPPAccounting" but thats not working.
Dear community, I am working on a graph that shows the daily FX rates. I am bringing the data in through an SQL Data Adapter and have set up the following settings in regard to the data and what is shown on the x-axis: Data is shown in days, but the x-axis name are 'summed' to the months. This works great except for the fact that it writes the month as full. I think it's based on the Time Dimension Description because the date format in the data table is: MM/DD/YYY As you can see the graph is quite small and the naming takes up a big part. Does anyone know if it's possible to adjust the sourcing of this naming/description? Maybe to a UD8 TimeDescription member or adjust the description of Time in the graph itself, or maybe through the data table or data adapter? Thanks in advance!
Dear community, We encountered a reporting issue: when exporting a cube view to Excel, one line of data will flip the signage. In cube view, we have the Budget amount of (10,763), and the delta is calculated with GetDataCell(CVC(Actual column) - CVC(Budget column)), which should be 700, but the delta is showing (20,825) instead. When exporting this cube view to Excel, the Budget amount becomes 10,763 (which is incorrect), but the delta is calculating correctly as 700. For delta, the temporary solution is to calculate with GetDataCell(S#ACTUAL - S#BUDGET); however, the Budget amount would still flip the sign when exporting to Excel. We use the Text1 property in the cube view to determine the expansion, TreeDescendantsInclusiveR. For the formatting, we use the below parameters in the cube view: BackgroundColor = White, NumberFormat = [#,###,0 ;(#,###,0);"0 "], Scale = 3, ExcelNumberFormat = [#,##0,], ExcelUseScale = False This happens in Budget for EntityA
Hi, All Just wanted to share a SQL query I wrote to retrieve base members and parent of a given hierarchy from within a dashboard grid. (Note that the parameter supplies the member ID of the top member in the chosen hierarchy.) Any thoughts on how to improve are welcome! With TEST AS (SELECT childid, parentID, dimtypeid, 0 AS level FROM relationship WHERE parentid = |!SelectDimension!| UNION ALL SELECT ft.childid, ft.parentID, ft.dimtypeID, level + 1 FROM relationship ft JOIN TEST d ON ft.parentid = d.childid ) SELECT m.name As Child_Name, m.description as Child_Description, P.name AS Parent_Name, Description as Parent_Description FROM TEST d JOIN relationship a ON d.parentid = a.parentid JOIN member AS M ON a.childID = m.memberid JOIN member as P on d.parentid = p.memberid where NOT EXISTS ( SELECT NULL FROM TES
I am trying to create a conditional formatting code to convert a large percentage result in a percent variance column to replace it with text ("nm"). Can anyone provide the conditional formatting text that would replace the actual % variance with text?
I want format the Cube view cell based on cell amountIf (CellAmount > GetDataCell(CVC(Col2)) )ThenBackgroundColor = Red, TextColor = WhiteEnd if This code is not working, Actually I am comparing actual amount with budget. how can we do this?
We're pulling project status' as our attribute 9 from an ERP integration what is the best way to pull those values into an existing summary dashboard? I was going the UD8 route but is there an easier way through Memberfilter builder that I can go directly to that data?
Hello, I used to work on v7.4. When we worked on cube views, changes were saved in Cube Views. It worked perfectly. Recently I began to work on v8.0.0, I noticed that when changing a Cube View, OS opens a second window for the same Cube View under CV Groups of Workspaces. If we make changes in one of the windows without refreshing, and then we modify in the other window, it doesn't take previous changes into account. It's just like the issue when two persons work in the same business rule. Do you have a solution for this issue apart from updating OS version ? Many thanks in advance.
We have a client with a custom font that they would like to apply to reports that are exported to PDF. Has anyone come across this as an option? Thank you
Hey everyone! Wanted to reach out and see if there was a simple way to include banded rows (every other row highlighted a different shade) into CV formatting within the application. Thanks for the help!
Hello, I was wondering if it is at all possible to add a type-ahead functionality in the SQL Table Editor. I have tried to assign a Bound-list (via SQL query) parameter to the column but nothing is returned. Reason to use this is that I have a large list of values to look up from, so fitting those in a delimited list instead would really hinder the performance of my dashboard as it would take very long to open. Thanks, Miguel
Hi, I am trying to create a column in cube view, and that column must average based on columns (out of the 4) that have data and ignore the column with 0 or no data. Denominator will be based on number of columns with data e.g. if columns 1 and 2 have data, then 2/4 will be the denominator. Numerator will be data that exist in those 2 columns. Any idea how I can achieve this as Onestream doesn't support such requirement on prebuilt settings.
Is there a way to have a nested parameter with different dimensions? Example: If I select Year = 2020, the next prompt will ask me to select a Scenario The example I saw in the Design & Reference Guide used the same dimension, so I'm not sure if this is possible.
I am trying to get prior year actuals in the same column as current year actuals. The code i am using in the CV is above. This result pulling back in YTD prior year but I want monthly value for prior year.
Hi, We are facing a strange issue with Excel QuickViews. When a non-admin user tries simple quick view, user is getting below message. But when admin tries, he is getting all of the data in single page. We have tried changing all the settings on Max rows, Max seconds, almost 100s of combinations (from 1000 to Billion) but no luck. Any thoughts on why this is happening? We are using slice security for users. Page 1. Use row paging buttons in Task Pane.
I have a number of column definitions that will use the same Row Range in the Row Overrides. I would like to use a parameter or XFBR for this, but neither seem to work for this specific field in the Row Overrides. i.e. I can only specify row names. Below is an example of what I am trying to do. Has anyone accomplished this?
We are trying to create an advanced chart using a secondary y axis and are running into issues. We referenced https://community.onestreamsoftware.com/t5/Implementation-Q-A-Archive/Question-In-Advanced-Chart-component-of-a-Dashboard-can-you-show/ta-p/1551 blog which explains how to code the business rule. However, there is no place within the chart to reference the cubeview and when we run the dashboard, we get an error message stating the data adapter type does not match the chart type. Any solutions or if there's any document we can refer to which would show end to end flow around the cubeview, data adapter, business rule, and chart? Below are screenshots of our data adapter, chart, and dashboard error.
Hello, I am using a cube view that has the same rows, but it needs different columns based on the UD8 member. I built multiple template columns cube views, and created a parameter for UD8 members. I want to retrieve the column template CV based on the selection of UD8. I created the following XFBR: I then attached it to the main Cube View: When I run it, and select UD8, nothing appears: If I put directly the template name, the cube view runs with no issues, showing data as well. Any idea why it is not working? Thanks, Ioana
How can I change the Row name on a cube view so it populates differently in my dashboard? Example in CV is "ESG Total", on the dashboard is "Total ESG" but want the dashboard to say "Environmental Social and Governance Total" cube view: dashboard
Hello, I have a Dashboard that has an attachment button, setup as "File Upload" to the Application Database. We want the client to be able to attach files (this part is working). Due to the number of attachments, every file that is attached, will have to be tagged to a Text field for a specific Member. We'd like to tag multiple files on a single text line, separated by commas. Has anyone done something similar? How did you go about this? Thank you for your time.
Hello, Need some help to introduce an extra header on top of the Dimension header that shows up on the cubeview. I can get the count and the $ but am not sure of how to introduce the Operating Plan. Any help would be appreciated. Thank You, Indu
We have summary dashboards with a lot of information. I'm trying to find a way for users to filter down on that information and have created 2 combo-boxes. However, none of the data pulls through. How do I make those combo- boxes (parameter values) dependent on each other? The idea is when a user selects the first "Resort" box only that resort's projects will be shown in the dashboard. Secondly, the second combo-box "Entity" would only return the entities from within that resort selected (step 1). Currently, no data pulls in when either parameter is selected. If I remove either of the combo-boxes, leaving only one, it works properly.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.