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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
PbiCeo
Helper II
Helper II

How to get exponential values with DAX

Hello everyone,

 

I want to get exponential values from descending values.

In this case, the maximum value of descending values should be 100 (or 100%) as an exponential value like below.
For example

Descending Values Expected Exponential Values
6 100
3 50
1 16.6666


How to do that?
Thank you.

3 REPLIES 3
wdx223_Daniel
Super User
Super User

=VAR vMaxDescValue=CALCULATE(MAX(Table[Descending Values]),ALL(Table)) RETURN MAX(Table[Descending Values])/vMaxDescValue*100

amitchandak
Super User
Super User

@PbiCeo , not very clear, You have exp function in dax

https://docs.microsoft.com/en-us/dax/exp-function-dax

Thank you for your comment.

I tried that, but enfortunately it didn't work as I expected...

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

Top Solution Authors