Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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.
User | Count |
---|---|
141 | |
70 | |
69 | |
53 | |
52 |
User | Count |
---|---|
208 | |
94 | |
64 | |
60 | |
57 |