When using business calculations, it would be useful if the dimensions that were referred to in the business calculation were not included by themselves in the query outside of the business calculation itself. Instead, the business calculation can be used as a custom dimension itself.
Example Business calculation name ‘Sale Type’
case(
when: price >10
, then: ‘>$10’
, else: ‘<$10’
)
output would be
Sale Type Sales
$10. 803
<$10. 209
Not
Sale Type Sales
$10. 1
$10. 1
$10. 1
<$10. 1
$10. 1
$10. 1
<$10. 1
etc.