
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Conditional Number Format
Hi everyone - I have a pivot table that contains different data types which need to be formated based on the dimension.
For example, I have financial data mixed with non-financial data:
Measure, Value
Revenue, $1202.00
Units, 45
I didn't see a way in the chart properties to conditionally format something based on its dimension. The Number tab just allows you to override the format but if() statements don't work.
Does anyone know how this can be achieved in a pivot table chart?
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can define format directly in expression for value, something like this:
if(condition, num(Value, 'format1'), money(Value, 'format2'))
On the Nimber tab, use "expression default".

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can define format directly in expression for value, something like this:
if(condition, num(Value, 'format1'), money(Value, 'format2'))
On the Nimber tab, use "expression default".
