Forum Discussion
Anonymous
6 years agoNot applicable
Comparing negative numbers in DAX?
Hi, this might be a silly question but I can't figure out how to achieve it. I have a financial table that has a column called "% Decrease" which shows the % decrease of payments. An example valu...
- 6 years ago
Hi Anonymous ,
Go to "Data view">"Modeling">"New Column",then add a dax expression as below:
Column = IF('Table'[% Decrease]>-1 &&'Table'[% Decrease]<-0.49,"Yes","No")Then you will see:
Best Regards,
Kelly
VasTg
6 years agoMemorable Member
Anonymous
Add a custom column as below
=if [Column1] <= -0.49 and [Column1] >= -1 then "Yes" else "No"
Replace Column1 with your actual column name
If this helps, mark it as a solution
Kudos are nice too