Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 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.
Please see my fuction, There are NAN is shipped different, I would like to set NAN as empty as well , somehow this function displays NAN as No.
I just want , NAN in the IN FULL column should show nothing, blank()
please help ~
Solved! Go to Solution.
Hi, @SelflearningBi ;
Try it.
In Full =
IF (
'FW22_5 25'[Shipped Qty Difference] = "NaN",
BLANK (),
IF (
AND (
'FW22_5 25'[Shipped Qty Difference] >= 0,
'FW22_5 25'[Shipped Qty Difference] <= 0.02
),
"Yes",
"No"
)
)
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @SelflearningBi ;
Try it.
In Full =
IF (
'FW22_5 25'[Shipped Qty Difference] = "NaN",
BLANK (),
IF (
AND (
'FW22_5 25'[Shipped Qty Difference] >= 0,
'FW22_5 25'[Shipped Qty Difference] <= 0.02
),
"Yes",
"No"
)
)
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check If this measure can solve the issue
In Full =
VAR EXCLUSENAN =
CALCULATE (
SUM ( 'FW22_5 25'[Shipped Qty Difference] ),
FILTER (
'FW22_525',
'FW22_5 25'[Shipped Qty Difference]
<> (
0
/ BLANK ()
)
)
)
RETURN
IF (
'FW22_5 25'[Shipped Qty Difference] = "NaN",
"Nan",
IF (
AND (
'FW22_5 25'[Shipped Qty Difference] >= 0,
'FW22_5 25'[Shipped Qty Difference] <= 0.02
),
"Yes",
"No"
)
)
If this post helps, accept it as a solution
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
87 | |
81 | |
53 | |
37 | |
35 |