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
zibster
Helper III
Helper III

Calculating daily Sales

Hi,

I am trying to calculate daily projection from the total weekly amount, the %ByDayForTheWeek is a calculated value. Below is an example of how I would do this in excel. Please help

 

Cap.PNG

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

Hi @zibster ,

 

We can try to create a calculated column in “Split By Day Table” Table using following dax to meet your requirement:

 

Ounput =
[%ByDayForTheWeek]
    * CALCULATE (
        SUM ( 'Sales Table'[SalesProj] ),
        FILTER (
            'Sales Table',
            'Sales Table'[Facility] = EARLIER ( 'Split By Day Table'[Facility] )
                && 'Sales Table'[Department] = EARLIER ( 'Split By Day Table'[Department] )
                && 'Sales Table'[WeekID] = EARLIER ( 'Split By Day Table'[WeekID] )
        )
    )

 

If it doesn't meet your requirement, kindly share your sample data and expected result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.


Best regards,

 

Community Support Team _ Dong Li
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-lid-msft
Community Support
Community Support

Hi @zibster ,

 

We can try to create a calculated column in “Split By Day Table” Table using following dax to meet your requirement:

 

Ounput =
[%ByDayForTheWeek]
    * CALCULATE (
        SUM ( 'Sales Table'[SalesProj] ),
        FILTER (
            'Sales Table',
            'Sales Table'[Facility] = EARLIER ( 'Split By Day Table'[Facility] )
                && 'Sales Table'[Department] = EARLIER ( 'Split By Day Table'[Department] )
                && 'Sales Table'[WeekID] = EARLIER ( 'Split By Day Table'[WeekID] )
        )
    )

 

If it doesn't meet your requirement, kindly share your sample data and expected result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.


Best regards,

 

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

This was very helpful

 

Thanks 

amitchandak
Super User
Super User

 If possible please share the Excel and sample pbix file after removing sensitive information.Thanks.

My Recent Blog -

https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-tr...

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.