March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi, I am checking to see if the status is greater than 15, then it should be "Yes"; otherwise, it should be "No". The syntax from example #1 is working. However, I noticed that many records were blank and should fall under "No", but they didn't. So I modified the syntax as shown in example #2, but I keep getting an error. I am new to DAX, so please assist me with this.
#1
if(Number.FromText([#"Warehousing Orders[LineStatus]"]))>15 then "Yes" else "No"
#2
Solved! Go to Solution.
Hi @hongho2
If you want to create the column in power query, you can add a custom column and refer to the following code
if Number.FromText([LineStatus])>15 and [LineStatus]<>null then "Yes" else "No"
If you want to create the column as a calculated column, you can refer to the following code
Column =
IF (
NOT ( ISBLANK ( 'Warehousing Orders'[LineStatus] ) )
&& VALUE ( 'Warehousing Orders'[LineStatus] ) > 15,
"Yes",
"No"
)
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @hongho2
If you want to create the column in power query, you can add a custom column and refer to the following code
if Number.FromText([LineStatus])>15 and [LineStatus]<>null then "Yes" else "No"
If you want to create the column as a calculated column, you can refer to the following code
Column =
IF (
NOT ( ISBLANK ( 'Warehousing Orders'[LineStatus] ) )
&& VALUE ( 'Warehousing Orders'[LineStatus] ) > 15,
"Yes",
"No"
)
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @hongho2
You're mixing DAX with M.
I assume you want to use M. Then, you only need to modify syntax in #1 to be like:
if(Number.FromText([#"Warehousing Orders[LineStatus]"]))<>null and (Number.FromText([#"Warehousing Orders[LineStatus]"]))>15 then "Yes" else "No"
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
21 | |
16 | |
13 | |
13 | |
9 |
User | Count |
---|---|
36 | |
31 | |
20 | |
19 | |
17 |