Forum Discussion

LeonardCs's avatar
LeonardCs
Icon for Helper I rankHelper I
2 years ago
Solved

HELP WITH DAX

Hi guys,   I have a table with colummn that contains several numbers and I need to sum them. It would be easy, but in this colummn I have some words together and I can't take this words.   for e...
  • tamerj1's avatar
    2 years ago

    Hi LeonardCs 
    Please try

    Measure = 
    SUMX ( 
        'Table',
        IFERROR ( 'Table'[Value] + 0, 0 )
    )