Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi
I am not getting all the data when i am using quarterly date on X axis
visual is coming with skipping the value which is not having the data and reporting with valued data.
I need to report in line chart with blank as zero for that quarterly.
i am using the condition as below when i select male & female some of the values are reporting properly but some not.
Proud to be a Super User! | |
Solved! Go to Solution.
Modify the measure:
result =
IF (
ISBLANK ( tablename[column] )
|| tablename[column] = 0
|| tablename[column] = null,
"MALE",
"FEMALE"
)
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi
As per attached chart., is there any way to report missed data points in line chart with "0" tried with show items with no data option for x axis. but not coming. Let know is there any way?
?
Proud to be a Super User! | |
Thanks for the response..
I have written calculated column as below:
tablename[column] is numeric data.
Proud to be a Super User! | |
Modify the measure:
result =
IF (
ISBLANK ( tablename[column] )
|| tablename[column] = 0
|| tablename[column] = null,
"MALE",
"FEMALE"
)
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Modify the calculate column using dax below:
text =
IF (
ISBLANK ( table[column] )
|| table[column] = 0
|| table[column] = "",
"MALE",
"FEMALE"
)
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
| User | Count |
|---|---|
| 50 | |
| 42 | |
| 36 | |
| 31 | |
| 29 |
| User | Count |
|---|---|
| 129 | |
| 129 | |
| 59 | |
| 48 | |
| 47 |