We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In cube.js there is not a feature when you want to apply rounding after the additive measured value.
some_measure_1: { sql: ` ${CUBE}.col1 - ${CUBE}.col2 `, type: `sum`, }
we have to introduce another measure for its rounded value
some_measure_2: { sql: ` ROUND(${CUBE.some_measure_1}, 2) `, type: `number`, }
There should be some in additive measure object that should should accept rounding integer if required. like
some_measure_1: { sql: ` ${CUBE}.col1 - ${CUBE}.col2 `, type: `sum`, round: 2 }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In cube.js there is not a feature when you want to apply rounding after the additive measured value.
we have to introduce another measure for its rounded value
There should be some in additive measure object that should should accept rounding integer if required.
like
The text was updated successfully, but these errors were encountered: