Forum Discussion
jamieham
Helper II
6 years agoSubtract column from number value
I want to subtract a column from number value and dont know how to do it in DAX. How would I subtract the column 'Value" from 70? Value 23 14 68 12
- Anonymous6 years ago
Greg_Deckler
Community Champion
6 years agojamieham - The measure form is
Measure = 70 - MAX('Table'[Value])
Assuming your visualization has the [Value] column displayed in something like a Table visualization.