Forum Discussion

NPatel12498's avatar
NPatel12498
Frequent Visitor
2 years ago
Solved

How to sum rows based on values starting with 2 different numbers

Hi,   I am trying to do a calculation within a column that takes the sum of all the raw costs where the Org name starts with either a "1" or a "3" and the Cost Category = Regular Labor   This is ...
  • VN999's avatar
    VN999
    2 years ago

    Try to create DAX Measure and check :

    TotalRegularLabor :=
    SUMX (
    FILTER (
    YourTable,
    (LEFT(YourTable[Org Name], 1) = "1" || LEFT(YourTable[Org Name], 1) = "3") &&
    YourTable[Cost Category] = "Regular Labor"
    ),
    YourTable[Amount]
    )