Forum Discussion
josevaras
6 years agoMicrosoft Employee
Filter Measure Results
Hello, I have the measure DIVIDE([Total Sales LM] , [Sum Total Sales] ) -1 which returns, amongst others values, a -100. I would like to filter out the -100 out of the result set. I am using ...
- 6 years ago
Hi josevaras ,
A possible approach would be to nest the DIVIDE within an IF:
= IF(
DIVIDE([Total Sales LM] , [Sum Total Sales] ) -1=-100,
BLANK(),
DIVIDE([Total Sales LM] , [Sum Total Sales] ) -1
)
Thatt should filter out the results where the DIVIDE([Total Sales LM] , [Sum Total Sales] ) -1 returns -100.
TheDataMustFlow
6 years agoFrequent Visitor
Hi josevaras ,
A possible approach would be to nest the DIVIDE within an IF:
= IF(
DIVIDE([Total Sales LM] , [Sum Total Sales] ) -1=-100,
BLANK(),
DIVIDE([Total Sales LM] , [Sum Total Sales] ) -1
)
Thatt should filter out the results where the DIVIDE([Total Sales LM] , [Sum Total Sales] ) -1 returns -100.