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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
heetu24
Helper I
Helper I

Need Help in calculated column

Hello All,

I want to calculate the BPS(Basis Points) by creating new calculated column  in Power BI Desktop using DAX.

Formula = Current Year sales - last Year sales *10000

Sample data  is below. Can some one assist?

 

 

CountryProduct IDTime GroupCompanyPrice TierPeriodSales Value
IND1MATAEconomyCurrent Year589
CHN2MATBPremiumLast Year548
CAN3MATCSuper PremiumLast two Year256
NA4YTDkEconomyCurrent Year564
SA5YTDJPremiumLast Year256
SRI LANKA6YTDHSuper PremiumLast two Year845



1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

Hi  @heetu24 ,

 

You might consider using the following dax

Test =
var _current=
SUMX(
    FILTER(ALL('Table'),'Table'[Period]="Current Year"),[Sales Value])
var _last=
SUMX(
    FILTER(ALL('Table'),'Table'[Period]="Last Year"),[Sales Value])
var _value=
_current - _last * 10000
return
IF(
    'Table'[Product ID]=MINX(ALL('Table'),[Product ID]),_value,BLANK())

vyangliumsft_0-1722331527488.png

 

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-yangliu-msft
Community Support
Community Support

Hi  @heetu24 ,

 

You might consider using the following dax

Test =
var _current=
SUMX(
    FILTER(ALL('Table'),'Table'[Period]="Current Year"),[Sales Value])
var _last=
SUMX(
    FILTER(ALL('Table'),'Table'[Period]="Last Year"),[Sales Value])
var _value=
_current - _last * 10000
return
IF(
    'Table'[Product ID]=MINX(ALL('Table'),[Product ID]),_value,BLANK())

vyangliumsft_0-1722331527488.png

 

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

heetu24
Helper I
Helper I

It is coming same value in each record I am looking separate value 

v-yangliu-msft
Community Support
Community Support

Hi  @heetu24 ,

 

Here are the steps you can follow:

1. Create calculated column.

 

Test =
var _current=
SUMX(
    FILTER(ALL('Table'),'Table'[Period]="Current Year"),[Sales Value])
var _last=
SUMX(
    FILTER(ALL('Table'),'Table'[Period]="Last Year"),[Sales Value])
return
_current - _last * 10000

 

2. Result:

vyangliumsft_0-1721178355157.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

Feb2025 NL Carousel

Fabric Community Update - February 2025

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