Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I got error message with this fomular :
Solved! Go to Solution.
Hi @haidong ,
I think there may be spaces in the item_n column.
You can try the DAX below:
Column =
IF (
SEARCH ( "no", 'GI_Yield Feb20'[Item_N], 1, 0 ) > 0,
'GI_Yield Feb20'[Qty in unit of entry] / 2,
'GI_Yield Feb20'[Qty in unit of entry]
)
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @haidong ,
I think there may be spaces in the item_n column.
You can try the DAX below:
Column =
IF (
SEARCH ( "no", 'GI_Yield Feb20'[Item_N], 1, 0 ) > 0,
'GI_Yield Feb20'[Qty in unit of entry] / 2,
'GI_Yield Feb20'[Qty in unit of entry]
)
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Try like this nad check
if('GI_Yield Feb20'[Item_N] & ""="no",'GI_Yield Feb20'[Qty in unit of entry]/2,'GI_Yield Feb20'[Qty in unit of entry]
Make sure data type changed here
Hi
i m trying to extract first X digits out of my ID column of data as
Hi @haidong
First of all heck it in Power Query Editor mode (if available)
or you can debug issue with ISTEXT() function
The statement
Column = ISTEXT('GI_Yield Feb20'[Item_N])
should return you true if the field is exactly Text
User | Count |
---|---|
116 | |
73 | |
62 | |
48 | |
47 |
User | Count |
---|---|
173 | |
123 | |
60 | |
59 | |
57 |