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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
powerbiexpert22
Impactful Individual
Impactful Individual

arithmetic operation error

if i use below measure in table visual then i am getting below error . i am usng direct query

if i remove distinctcount() from measure then it works fine and does not give any error . is there any alternative for implementing this measure to avoid this error?

 

measure = 

 

Total orders offline =
CALCULATE(DISTINCTCOUNT('ORDERS'[ORDER_NUMBER]),FILTER(PRODUCT,
PRODUCT[CategoryType]="Offline"))

 

powerbiexpert22_0-1724836076508.png

 

1 ACCEPTED SOLUTION
bhanu_gautam
Super User
Super User

@powerbiexpert22 ,  Try using below 

 

Total orders offline =
SUMX(
    VALUES('ORDERS'[ORDER_NUMBER]),
    IF(
        CALCULATE(
            COUNTROWS(PRODUCT),
            PRODUCT[CategoryType] = "Offline"
        ) > 0,
        1,
        0
    )
)



Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






View solution in original post

2 REPLIES 2
bhanu_gautam
Super User
Super User

@powerbiexpert22 ,  Try using below 

 

Total orders offline =
SUMX(
    VALUES('ORDERS'[ORDER_NUMBER]),
    IF(
        CALCULATE(
            COUNTROWS(PRODUCT),
            PRODUCT[CategoryType] = "Offline"
        ) > 0,
        1,
        0
    )
)



Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






thanks @bhanu_gautam 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.