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

Duplicating values for two dates

Hi there,

 

Please I need some urgent help. I am trying to calculate my quantity values where I duplicate a value for friday to reflect on saturday as well. Here is a sample data

Data:

DateCategoryqty
3/27/2022a2,000
3/27/2022    b2,050
3/27/2022    c3,100
3/26/2022    b2,600
3/26/2022    c3,000
3/25/2022    a1,000
3/25/2022    b1,500
3/25/2022    c2,300

 

Current results without the category column:

Dateqty
3/27/2022    7,150
3/26/2022    5,600
3/25/2022    4,800

 

Expected results if we duplicate every Friday value for category a only to add on Saturdays as well:

DateqtyComments
3/27/2022    7,150 
3/26/2022    6,6005,600 +1,000 from 3/25 which is a friday
3/25/2022    4,800 

 

Please thank you very much.

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @yve214 

not sure if I fully understand the requirement. However, please try

Total Qty =
VAR CurrentValue =
    SUM ( TableName[qty] )
VAR PreviousValue =
    CALCULATE (
        SUM ( TableName[qty] ),
        'Date'[Date]
            = MAX ( 'Date'[Date] ) - 1,
        TableName[Category] = "a"
    )
RETURN
    IF (
        MAX ( 'Date'[Week Day Name] ) = "Saturday",
        CurrentValue + PreviousValue,
        CurrentValue
    )

View solution in original post

2 REPLIES 2
tamerj1
Super User
Super User

Hi @yve214 

not sure if I fully understand the requirement. However, please try

Total Qty =
VAR CurrentValue =
    SUM ( TableName[qty] )
VAR PreviousValue =
    CALCULATE (
        SUM ( TableName[qty] ),
        'Date'[Date]
            = MAX ( 'Date'[Date] ) - 1,
        TableName[Category] = "a"
    )
RETURN
    IF (
        MAX ( 'Date'[Week Day Name] ) = "Saturday",
        CurrentValue + PreviousValue,
        CurrentValue
    )

@tamerj1 

 

Yes this solved my problem, thank you so much.

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.

Top Solution Authors