Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
hongho2
Frequent Visitor

checking for multiple fields

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

Column = IF(
    NOT(ISBLANK([Warehousing Orders[LineStatus]]))
    || VALUE([Warehousing Orders[LineStatus]]) > 15,
    "Yes",
    "No"
))))
1 ACCEPTED SOLUTION
v-xinruzhu-msft
Community Support
Community Support

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.

View solution in original post

2 REPLIES 2
v-xinruzhu-msft
Community Support
Community Support

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.

mlsx4
Super User
Super User

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"

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors