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
vinaykumarnaka
New Member

Grouping sales data for consective dates for repetative product ids

vinaykumarnaka_2-1628009794384.pngvinaykumarnaka_3-1628009845322.png

vinaykumarnaka_4-1628009897001.png

 

Greeting

As you can see in my data set the dates are repeating due to different unique product ids.

I want to group quantities for two consecutive days for similar product id

 

For example if  the product id   

ab1234    has  2   quantities on  06-07-2021   then in a separate column as a result quantities should be 2 which is (0+2 that is yesterdays quantity 0 + today's quantity  2)

ab1234    has  5   quantities on  07-07-2021   then quantities should be 7 which is (2+5 that is yesterdays quantity 2 + today's quantity  5))

ab 1234   has  4   quantities on  08-07-2021   then quantities should be 9 which is (5+4)

ab 1234   has  9   quantities on  09-07-2021   then quantities should be 13 which is (4+9).

 

 

looking forward to see some help

ab 1234   has  7   quantities on  10-07-2021   then quantities should be 2 which is (9+7)

 

1 ACCEPTED SOLUTION

Hi @vinaykumarnaka ,

 

I can probably understand what you mean. Sort the date column first, and use this as the filter condition for calculation.

rank_date = RANKX('Table','Table'[Process_dt],,ASC,Dense)
last_period = 
var current_index = MAX('Table'[rank_date])
return CALCULATE(COUNT('Table'[Product_id]),FILTER(ALLEXCEPT('Table','Table'[Product_id]),'Table'[rank_date]=current_index-1))+0
2_date_count = COUNT('Table'[Product_id])+[last_period]

Vlianlmsft_0-1628238664513.png

 


Best Regards,
Liang
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

4 REPLIES 4
parry2k
Super User
Super User

@vinaykumarnaka you should add a calendar table in your model, set a relationship with the transaction table on the date column, and add the following measure. You can follow my blog post here to add a calendar table. Create a basic Date table in your data model for Time Intelligence calculations | PeryTUS IT Solutio...

 

Total = 
CALCULATE ( 
SUM ( YourTable[YourColumn] ),
DATESINPERIOD ( CalendarTable[Date], MAX( CalendarTable[Date] ), -1, DAY )
)

 

In visualization, use date from calendar table (not from transaction table)

 

Follow us on LinkedIn

 

Check my latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

vinaykumarnaka_1-1628067535636.png

vinaykumarnaka_2-1628067573948.png

Greetings, as you can see on the left-hand side 2 days sale is an output of your solution in the middle, is a manual calculation I have created as a check and the left-hand side is the actual sale quantity for that particular date.

usually, the manual calculation and measure I have created should match but it's not.

 

 

Hi @vinaykumarnaka ,

 

I can probably understand what you mean. Sort the date column first, and use this as the filter condition for calculation.

rank_date = RANKX('Table','Table'[Process_dt],,ASC,Dense)
last_period = 
var current_index = MAX('Table'[rank_date])
return CALCULATE(COUNT('Table'[Product_id]),FILTER(ALLEXCEPT('Table','Table'[Product_id]),'Table'[rank_date]=current_index-1))+0
2_date_count = COUNT('Table'[Product_id])+[last_period]

Vlianlmsft_0-1628238664513.png

 


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

vinaykumarnaka
New Member

@amitchandak @parry2k @Fowmy @selimovd @v-rzhou-msft 

 

please can anyone help

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.