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
eswar
Frequent Visitor

extract column heading based on condition from another table

I have two tables. One is Product table has two columns., Product and Price.

Product table

ProductPrice
A6.5
A4.2
B75
C28
B43
C62
A2.2

The another table has Price range for each product (categorised by Range1, Range2, Rabge3 and Range4)

PriceRangeTable

ProductRange1Range2Range3Range4
A<=3>3 - <=5>5 - <=7>7
B<=15>15 - <=25>25 - <=50>50
C>75<75 - >=50<50 - >=25<25

I want a Calculated Column (Range) in Product table based on the price that fits in the range for specific product

Output Table could be

ProductPriceRange
A6.5Range3
A4.2Range2
B75Range4
C28Range3
B43Range3
C62Range2
A2.2Range1
1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi, @eswar 

I am not sure how your whole data model looks like, but in my opinion, it is good to have the PriceRange-Table structure like below. It is easy in Power Query to change like below.

Then calculated column can be created in an efficient way.

 

Picture1.png

 

https://www.dropbox.com/s/ycs1w4547kkhhid/eswar.pbix?dl=0 

 

Ranges CC =
VAR prices = 'Product'[Price]
VAR products = 'Product'[Product]
RETURN
CALCULATE (
SELECTEDVALUE ( PriceRange[Range] ),
FILTER (
PriceRange,
PriceRange[Product] = products
&& prices >= PriceRange[Min]
&& prices < PriceRange[Max]
)
)
 

Hi, My name is Jihwan Kim.


If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.


Linkedin: linkedin.com/in/jihwankim1975/

Twitter: twitter.com/Jihwan_JHKIM

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

3 REPLIES 3
negi007
Community Champion
Community Champion

@eswar You may need to have value in numberic form in your price range table, else it is difficult to perform calculation. There is already a solution for similar problem, please refer to below link, it will take you in the right direction.

 

https://community.powerbi.com/t5/Desktop/Lookup-Price-Range-for-Style/m-p/322514#M143719

 




Did I answer your question? Mark my post as a solution!
Appreciate your Kudos



Proud to be a Super User!


Follow me on linkedin

Jihwan_Kim
Super User
Super User

Hi, @eswar 

I am not sure how your whole data model looks like, but in my opinion, it is good to have the PriceRange-Table structure like below. It is easy in Power Query to change like below.

Then calculated column can be created in an efficient way.

 

Picture1.png

 

https://www.dropbox.com/s/ycs1w4547kkhhid/eswar.pbix?dl=0 

 

Ranges CC =
VAR prices = 'Product'[Price]
VAR products = 'Product'[Product]
RETURN
CALCULATE (
SELECTEDVALUE ( PriceRange[Range] ),
FILTER (
PriceRange,
PriceRange[Product] = products
&& prices >= PriceRange[Min]
&& prices < PriceRange[Max]
)
)
 

Hi, My name is Jihwan Kim.


If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.


Linkedin: linkedin.com/in/jihwankim1975/

Twitter: twitter.com/Jihwan_JHKIM

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Thank you for making the concept (having Min and MAx column for grades) clear.

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.