cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
babyjb123
Helper II
Helper II

Simple calculation

Hi all,
 
I am calculate a simple increase rate: (YTD amount-Prior YTD amount)/Prior YTD amount
 
The measure is as follow:
Increase Selceted Day YTD = IF('Shop Account Ledger'[Prior YTD amount]<>BLANK(),
                                                     IF('Shop Account Ledger'[Prior YTD amount]=0,
                                                     'Shop Account Ledger'[YTD amount],
                                                       CALCULATE(('Shop Account Ledger'[YTD amount]-'Shop Account Ledger'[Prior YTD amount])/ABS('Shop Account Ledger'[Prior YTD amount]))
                                                       ),BLANK()
                                                   )
 
 
However, when the denominator(Prior YTD amount) =0, the increase rate is blank, why?
 
babyjb123_0-1670007103660.png

 

 

Thank you!

Branko

1 ACCEPTED SOLUTION
babyjb123
Helper II
Helper II

I figured out:
 
Increase Selceted Day YTD = IF('Shop Account Ledger'[Prior YTD Selected Day Actual Amount]=0,
                                'Shop Account Ledger'[YTD Selected Day Actual Amount],    
                               IF('Shop Account Ledger'[Prior YTD Selected Day Actual Amount]<>BLANK(),
                                 CALCULATE(('Shop Account Ledger'[YTD Selected Day Actual Amount]-'Shop Account Ledger'[Prior YTD Selected Day Actual Amount])/ABS('Shop Account Ledger'[Prior YTD Selected Day Actual Amount])),
                                  BLANK()
                                  )
                              )

View solution in original post

1 REPLY 1
babyjb123
Helper II
Helper II

I figured out:
 
Increase Selceted Day YTD = IF('Shop Account Ledger'[Prior YTD Selected Day Actual Amount]=0,
                                'Shop Account Ledger'[YTD Selected Day Actual Amount],    
                               IF('Shop Account Ledger'[Prior YTD Selected Day Actual Amount]<>BLANK(),
                                 CALCULATE(('Shop Account Ledger'[YTD Selected Day Actual Amount]-'Shop Account Ledger'[Prior YTD Selected Day Actual Amount])/ABS('Shop Account Ledger'[Prior YTD Selected Day Actual Amount])),
                                  BLANK()
                                  )
                              )

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors
Top Kudoed Authors