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
4 Replies
- AnonymousNot applicable
- FarhanAhmedCommunity Champion
Go to Modelling Tab on Top of PBI Desktop, there is an option to create New Column in Calculations
Create a new column in table
NewColumn = 70 - Table[Value] - amitchandakSuper User
- Greg_DecklerCommunity 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.