Forum Discussion
lhern_ndez
Helper I
7 years agoMeasure to subtract 1 from selected value
Hello, I have a very easy question but hard to me! I have a slicer with a dropdown list where I can select only 1 value. Once I select the value, let's say 25,000, I want a measure to reduce 1 f...
- 7 years ago
Hi lhern_ndez,
Try this one.
Measure = MAX(Table1[value])-1
Also please find the pbix attached.
Regards,
Frank
v-frfei-msft
Community Support
7 years agoHi lhern_ndez,
Try this one.
Measure = MAX(Table1[value])-1
Also please find the pbix attached.
Regards,
Frank
lhern_ndez
Helper I
7 years agoworks great, thanks!