Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

How to make comparisons with float in DAX?

Hi everyone, hope you are well 🙂

 

I'm trying to make a measurement that, depending on the daily variation, displays an icon for positive or negative.

But if the number the variation has decimal places (-0.05) does not work.

welyson205_0-1642770330467.png

 

Even with the negative number in percentage this occurs.

Does anyone have any idea what to do in these cases?

welyson205_1-1642770650496.png

thx

welyson205_0-1642775336241.png

 

1 ACCEPTED SOLUTION

Hi, @Anonymous 

I checked your measure 'indicador base64' and found that you have offset the calendar table by one day.

DateADD(
    oCalendario[Date],
    -1,
    Day
)

8.png

You may need to remove this filter. The code in the SWITCH section  is sufficient for your needs.

 

Best Regards,
Community Support Team _ Eason

View solution in original post

7 REPLIES 7
Thejeswar
Resident Rockstar
Resident Rockstar

Hi @Anonymous ,

Usually defining Indicators should be done on the Number and not on the percentage.

i.e. Control the display of Indicator using the Number by keeping the value as a number datatype and just  for display make the number as percentage

 

May be this could solve this issue!!

Anonymous
Not applicable

welyson205_0-1642775312140.png

 

Hi, @Anonymous 

I checked your measure 'indicador base64' and found that you have offset the calendar table by one day.

DateADD(
    oCalendario[Date],
    -1,
    Day
)

8.png

You may need to remove this filter. The code in the SWITCH section  is sufficient for your needs.

 

Best Regards,
Community Support Team _ Eason

Anonymous
Not applicable

Thx ❤️

Anonymous
Not applicable

If you notice in the first image my attempt is with decimal number

amitchandak
Super User
Super User

@Anonymous , Try to use unichar like this, see if that can help

 

/////Arrow
Arrow =
var _change =[Net Sales YTD]-[Net Sales LYTD]
return
SWITCH (
TRUE(),
_change > 0, UNICHAR(9650),
_change = 0, UNICHAR(9654),
_change < 0, UNICHAR(9660)
)


/////Arrow Color , use in conditional formatting using field value option


Arrow color =
var _change =[Net Sales YTD]-[Net Sales LYTD]
return
SWITCH (
TRUE(),
_change > 0, "green",
_change = 0, "blue",
_change < 0, "red"
)

 

UNICHAR - Tool for Custom Icon Formatting: https://www.youtube.com/watch?v=veCtfP8IhbI&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=50

Anonymous
Not applicable

Thanks for replying, my icon works fine, my problem is with the values ​​in the comparison. Note that the value is negative but the icon points to positive! I believe it is a problem with decimal numbers since this only happens when the value has places to the right (-0.05, -0.065, ...)

welyson205_0-1642774102619.png

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.