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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Anonymous
Not applicable

Data on Date Range and Customer

Hi , i am trying to add to my transaction table , the price from the price list.

 

transactiontbl:

Customer, Date, Amount

 

PriceListtbl:

[From Date],[To Date],[Customer],[Price]

 

please help me, to add the price to transactiontbl

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@Anonymous

 

Implement the below DAX and let me know if this is what you're looking for?

 

Create a new column applying the below DAX.

Price=
         CALCULATE( AVERAGE( PriceListtbl[Price] ),
                              FILTER( PriceListtbl,
                                          PriceListtbl[FromDate] <= ( transactiontbl[Date] )
                                          && PriceListtbl[ToDate] >= ( transactiontbl[Date] )
                                          && PriceListtbl[Customer] = ( transactiontbl[Customer] )
                                          )
                            )

 

Then taking it a step further to work out the Amount * Price per Customer, ignoring the date (although the Price is reflected by Date period in the first calculation) - see below:

Create a new table apply the below DAX:

tPRICE =
          GROUPBY( transactiontbl, transactiontbl[Customer],
                           "PRICEPRICE", SUMX( CURRENTGROUP(), transactiontbl[cPrice] * transactiontbl[Amount] )
                          )

 

Note: you can rename the column/table to anything you want.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

@Anonymous

 

Implement the below DAX and let me know if this is what you're looking for?

 

Create a new column applying the below DAX.

Price=
         CALCULATE( AVERAGE( PriceListtbl[Price] ),
                              FILTER( PriceListtbl,
                                          PriceListtbl[FromDate] <= ( transactiontbl[Date] )
                                          && PriceListtbl[ToDate] >= ( transactiontbl[Date] )
                                          && PriceListtbl[Customer] = ( transactiontbl[Customer] )
                                          )
                            )

 

Then taking it a step further to work out the Amount * Price per Customer, ignoring the date (although the Price is reflected by Date period in the first calculation) - see below:

Create a new table apply the below DAX:

tPRICE =
          GROUPBY( transactiontbl, transactiontbl[Customer],
                           "PRICEPRICE", SUMX( CURRENTGROUP(), transactiontbl[cPrice] * transactiontbl[Amount] )
                          )

 

Note: you can rename the column/table to anything you want.

Anonymous
Not applicable

Thank you, 

Is there an option to do it in power query?

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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