The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello All,
I am new to power BI and trying to create a simple PI chart.
I am trying to create a Pie Chart between ID and Distinct Category.Some category are nulls and would like to represent as unknown.
Data is like:
id, category
100,A
200,A
300,B
400,B
500,null
Could you please help?
Solved! Go to Solution.
Hi @tina345 ,
You can try these steps:
1. Create a column to reclassify the null to Unknown, by right-clicking the Table and choosing "New column" and using this DAX expression:
Respectfully,
Zoe Douglas (DataZoe)
Follow me on LinkedIn at https://www.linkedin.com/in/zoedouglas-data
See my reports and blog at https://www.datazoepowerbi.com/
Hi @tina345 ,
You can try these steps:
1. Create a column to reclassify the null to Unknown, by right-clicking the Table and choosing "New column" and using this DAX expression:
Respectfully,
Zoe Douglas (DataZoe)
Follow me on LinkedIn at https://www.linkedin.com/in/zoedouglas-data
See my reports and blog at https://www.datazoepowerbi.com/
Thanks DataZoe ..I was able to create a chart.