Forum Discussion
tameemyousaf
Helper I
8 years agoFilter Value of Measure
I have a measure that shows below values in grid. "Stock Exc/Def" is not the column its a measure. I want to filter the values and want to get the values that are -ve. I don't want to us...
- 8 years ago
=IF (
[Stock Exc/Def] < 0,
[Stock Exc/Def],
BLANK ( )
)
gapage
Advocate I
8 years ago=IF (
[Stock Exc/Def] < 0,
[Stock Exc/Def],
BLANK ( )
)
- tameemyousaf8 years ago
Helper I
Thanks gapage