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
EugenioBeltran
Frequent Visitor

Sumifs DAX formula referencing another column

Hello I am new to DAX and I am looking for a formula that is the equivalent of a sumifs referencing another column in example =sumifs(cases,sales order,@sales order). i have tried calculate(sum(table1[cases],filter(table1,table1[sales order]), in this case I have hundreds of sales orders

 

sales order item cases

1                 a         5

1                  b        10

1                  c         8

2                  a        27

2.                 b        35

2.                 c        15

3                  a        6   

3                  b        17

3.                  c        24

Thank you un advance

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

hi @EugenioBeltran 

 

you can plot a table visual with sales order column and a measure like:

measure = sum(table1[cases])

View solution in original post

1 REPLY 1
FreemanZ
Super User
Super User

hi @EugenioBeltran 

 

you can plot a table visual with sales order column and a measure like:

measure = sum(table1[cases])

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Top Solution Authors