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
JAVED
Helper I
Helper I

regarding display date

Hi!

 I have product column, date column and price column i need to divide the price column as start price and end price Start price the startingprice of the product in a period and end price is the last price of that product in that period and i need to display a column as how many time sthe price is change for that product. can you plz help me out to sort it.

 

1 ACCEPTED SOLUTION

Hi @JAVED,

 

You can create measures below: 

 

StartPrice = CALCULATE(MIN('Table1'[price]),FILTER(ALL(Table1),'Table1'[Product]=MAX('Table1'[Product])))

 

EndPrice = CALCULATE(Max('Table1'[price]),FILTER(ALL(Table1),'Table1'[Product]=MAX('Table1'[Product])))

 

No.Revisions = var t=SUMMARIZE('Table1','Table1'[Product],'Table1'[date],"p",MAX('Table1'[price]))
return
COUNTX(t,[p])-1

 

q4.PNG

 

Please see attached pbix file. 

 

Best Regards,
Qiuyun Yu 

Community Support Team _ Qiuyun Yu
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

6 REPLIES 6
Ashish_Mathur
Super User
Super User

Someone (including me) may have a solution to this problem.  Why are you posting it under issues.  Post it as a normal question.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
JAVED
Helper I
Helper I

Sorry, I edited the data,the data is the sale of product in diffrent months and years. The price change of the products in few months, For example I need to show the 2018 price of that item in end price and 2012(started sale) price of that item in start price

Hi @JAVED,

 

You can create measures below: 

 

StartPrice = CALCULATE(MIN('Table1'[price]),FILTER(ALL(Table1),'Table1'[Product]=MAX('Table1'[Product])))

 

EndPrice = CALCULATE(Max('Table1'[price]),FILTER(ALL(Table1),'Table1'[Product]=MAX('Table1'[Product])))

 

No.Revisions = var t=SUMMARIZE('Table1','Table1'[Product],'Table1'[date],"p",MAX('Table1'[price]))
return
COUNTX(t,[p])-1

 

q4.PNG

 

Please see attached pbix file. 

 

Best Regards,
Qiuyun Yu 

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Ashish_Mathur
Super User
Super User

Hi,

 

How will one know the beginning and ending price if for a particular product, a month appear multiple times.  For Bezel-FR there are two rows for August, 2014.  So what should the last price be?


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
JAVED
Helper I
Helper I

pricedateProduct
   
3972286.6May, 2016MOULDING ASSY 
4011542.6May, 2016GARNISH ASSY
4052032.36May, 2016CLOTH RR 
3960105.32May, 2016T-SCREW
3920401.32May, 2016PAFL PAD 
3999071.96May, 2016

HA PAD 

 

Ashish_Mathur
Super User
Super User

Hi,

 

Share some data and show the expected result.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

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.