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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

DAX Formula Error last step

Hi Experts

 

I am getting an error on my measure on the last row... cannot see the mistake

 

 

Rows with Material =
CALCULATE(
    COUNTROWS( 'App Forms' ),
    LEFT( 'App Forms'[Impact], 8 ) = "Material" &&
    COUNTROWS( 'App Forms' ),
    LEFT( 'App Forms'[Reg], 8 ) = "Material" &&
    COUNTROWS( 'App Forms' ),
    LEFT( 'App Forms'[Media], 8 ) = "Material" &&
    COUNTROWS( 'App Forms' ),
    LEFT( 'App Forms'[Financial], 8 ) = "Material" &&
    COUNTROWS( 'App Forms' ),
    LEFT( 'App Forms'[Businesss], 8 ) = "Material"  &&
    COUNTROWS( 'App Forms' ),
    LEFT( 'App Forms'[Incident], 8 ) = "Material"  &&
    COUNTROWS( 'App Forms' ),
    LEFT( 'App Forms'[External], 8 ) = "Material")

 

the error is here after the last comma 
,LEFT( 'App Forms'[External], 8 ) = "Material")

The Synatc for "," is incorrect....

 

I have tried using but && and || signs..

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , what countrow doing in between at filter location

 

Try like

 

Rows with Material =
CALCULATE(
COUNTROWS( 'App Forms' ),
LEFT( 'App Forms'[Impact], 8 ) = "Material" &&
LEFT( 'App Forms'[Reg], 8 ) = "Material" &&
LEFT( 'App Forms'[Media], 8 ) = "Material" &&
LEFT( 'App Forms'[Financial], 8 ) = "Material" &&
LEFT( 'App Forms'[Businesss], 8 ) = "Material" &&
LEFT( 'App Forms'[Incident], 8 ) = "Material" &&
LEFT( 'App Forms'[External], 8 ) = "Material")

 

you can replace && with or || if needed

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@Anonymous , what countrow doing in between at filter location

 

Try like

 

Rows with Material =
CALCULATE(
COUNTROWS( 'App Forms' ),
LEFT( 'App Forms'[Impact], 8 ) = "Material" &&
LEFT( 'App Forms'[Reg], 8 ) = "Material" &&
LEFT( 'App Forms'[Media], 8 ) = "Material" &&
LEFT( 'App Forms'[Financial], 8 ) = "Material" &&
LEFT( 'App Forms'[Businesss], 8 ) = "Material" &&
LEFT( 'App Forms'[Incident], 8 ) = "Material" &&
LEFT( 'App Forms'[External], 8 ) = "Material")

 

you can replace && with or || if needed

Anonymous
Not applicable

No Filter

@Anonymous , can you explain what you are trying to get

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.