Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Vitorino
Regular Visitor

How do i add days from a measure to a date?

Hello community,

 

How can i add calculated days from  a measure  to a date?

i Have a buy date, a sell date and seller. 

I want to add for each transaction that doesn't have a sell date, the avg number of days each seller takes to sell that product, in a column that calculates the expected time to sell in days:

 

Vitorino_0-1670774006560.png

 

 

 

 

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

Hi @Vitorino ,

 

According to your description, it seems that your [sell_time(days)] is a measure. Since measures themselves come with their own calculation logic, I think that you can use calculated column to return sell_time(days) to calculate the average, and then user another calculated column to return your expected output.

Since you didn't provide whole sample data, I made a sample and here are steps.

Create two columns.

 

sell_time(days) =
IF (
    'Table'[sell date] = BLANK (),
    DATEDIFF ( 'Table'[buy date], DATE ( 1899, 12, 30 ), DAY ),
    DATEDIFF ( 'Table'[buy date], 'Table'[sell date], DAY )
)

 

 

 

Expected_time_to_selldays =
IF (
    'Table'[sell date] = BLANK (),
    AVERAGEX (
        FILTER (
            'Table',
            'Table'[sell date] <> BLANK ()
                && 'Table'[seller] = EARLIER ( 'Table'[seller] )
        ),
        'Table'[sell_time(days)]
    )
)

 

Final output:

vxiaosunmsft_0-1670919592648.png

 

I attach my sample below for your reference.

 

Best Regards,
Community Support Team _ xiaosun

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

1 REPLY 1
v-xiaosun-msft
Community Support
Community Support

Hi @Vitorino ,

 

According to your description, it seems that your [sell_time(days)] is a measure. Since measures themselves come with their own calculation logic, I think that you can use calculated column to return sell_time(days) to calculate the average, and then user another calculated column to return your expected output.

Since you didn't provide whole sample data, I made a sample and here are steps.

Create two columns.

 

sell_time(days) =
IF (
    'Table'[sell date] = BLANK (),
    DATEDIFF ( 'Table'[buy date], DATE ( 1899, 12, 30 ), DAY ),
    DATEDIFF ( 'Table'[buy date], 'Table'[sell date], DAY )
)

 

 

 

Expected_time_to_selldays =
IF (
    'Table'[sell date] = BLANK (),
    AVERAGEX (
        FILTER (
            'Table',
            'Table'[sell date] <> BLANK ()
                && 'Table'[seller] = EARLIER ( 'Table'[seller] )
        ),
        'Table'[sell_time(days)]
    )
)

 

Final output:

vxiaosunmsft_0-1670919592648.png

 

I attach my sample below for your reference.

 

Best Regards,
Community Support Team _ xiaosun

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

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors