Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I am trying the use a column as legend in donut chart. The column value has nulls too.
I want to change the "nulls" to "Not Specified" just for the donut chart instead of transforming it in the dataset. Is that possible using DAX or something?
Please Help.
Thank you in advance, Sir.
Solved! Go to Solution.
hello just add a new calculated column to your tble
New Column =
SWITCH(
TRUE(),
'Table'[Category] = BLANK(),"Not Specified",
'Table'[Category]
)
using measures isnt possible for now
hello just add a new calculated column to your tble
New Column =
SWITCH(
TRUE(),
'Table'[Category] = BLANK(),"Not Specified",
'Table'[Category]
)
using measures isnt possible for now
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |