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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
smallon
New Member

Need help with dynamic calculation based off of timeline

Hello,

 

I am a noobie here but trying to determine if this can be done. I am trying to calculate the total testing cost by multipling the test cost by the units sold. The issue I am running into is the cost of a test changes month to month. So when I put my calculation into the measure it sums the cost of the timeframe selected rather then calculating each month. How can this be done?

 

Example:

 

Jan-19 Test Cost is $18 Volume is 10

Feb-19 Test Cost is $19 Volume is 10

Mar-19 Test Cost is $25 Volume is 10

 

What I am getting:

Jan Cost: $180 (this is correct)

Jan-Feb Cost: $740 ($37 test cost x 20 volume)

Jan-Mar Cost: $1,860 ($62 test cost x 30 volume)

 

What I want to get:

Jan Cost: $180 (this is correct)

Jan-Feb Cost: $370 ($18 test cost x 10 volume, $19 test cost x 10 volume)

Jan-Mar Cost: $620 ($18 test cost x 10 volume, $19 test cost x 10 volume, $25 test cost x 10 volume)

 

Calculation: 

Total Cost = SUM('StarLIMS CPT'[Test Cost])*SUM('Total Rev'[Revenue Acode Volume])

 

I appreciate all the help!

1 ACCEPTED SOLUTION
v-cherch-msft
Microsoft Employee
Microsoft Employee

Hi @smallon 

You may try to use below measure:

Total cost =
SUMX (
    FILTER (
        ALL ( 'StarLIMS CPT' ),
        'StarLIMS CPT'[Month] <= MAX ( 'StarLIMS CPT'[Month] )
    ),
    'StarLIMS CPT'[Test Cost] * 'StarLIMS CPT'[Revenue Acode Volume]
)

Regards,

Community Support Team _ Cherie Chen
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-cherch-msft
Microsoft Employee
Microsoft Employee

Hi @smallon 

You may try to use below measure:

Total cost =
SUMX (
    FILTER (
        ALL ( 'StarLIMS CPT' ),
        'StarLIMS CPT'[Month] <= MAX ( 'StarLIMS CPT'[Month] )
    ),
    'StarLIMS CPT'[Test Cost] * 'StarLIMS CPT'[Revenue Acode Volume]
)

Regards,

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

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.