Forum Discussion
jamieham
6 years agoHelper II
Subtract 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
6 years agoCommunity Champion
jamieham - The measure form is
Measure = 70 - MAX('Table'[Value])
Assuming your visualization has the [Value] column displayed in something like a Table visualization.