Forum Discussion
Saxon10
Post Prodigy
5 years agoSumproduct multiple column (Dax Req)
Hi, In data table I have 3 columns are A,B and C, based on the columns I am trying to calculate the volumn of each bins. I am applying the following formaula =IF(A2*B2*C2=0,0,SUMPRODUCT(($A$2...
- 5 years ago
For your reference,
Result = IF(DS[A]*DS[B]*DS[C], RANKX(DS, DS[A]*DS[B]*DS[C]), 0)