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
Anonymous
Not applicable

Substract Values from Same column dynamically based on another field.

I have a table (See below) with prices for different years

 

Capturenew.PNG

 

I have 250 Trade Days in each contract period from 11/01 to 10/31 each year.

 

I need to dynamically select (what if) table or similar a buy and sell Trade day and calculate the profit for each contract year if i were to buy and sell on those days. See below

 

In date: Day of trade

Out Date Day of trade

 

I need a measure that will substract the price from my in trade day to my out trade day. How can I do that?

Capture6.PNG

2 ACCEPTED SOLUTIONS

Hi @Anonymous ,

Please try to update the formula of your measure "Profit" just like below(the red font part is newly add):

Profit =
CALCULATE (
    SUM ( Winter_Contracts_Zema[Price] ),
    FILTER (
        ALL ( Winter_Contracts_Zema[Trade Day - Buy] ),
        Winter_Contracts_Zema[Trade Day - Buy] = [Buy_Trade Value]
    )
)
    CALCULATE (
        SUM ( Winter_Contracts_Zema[Price] ),
        FILTER (
            ALL ( Winter_Contracts_Zema[Trade Day - Buy] ),
            Winter_Contracts_Zema[Trade Day - Buy] = [Sell_Trade Value]
        )
    )

Best Regards

Rena

Community Support Team _ Rena
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

Anonymous
Not applicable

I solved it by using the value function in my measure! thanks to everyone who took the time to read this!

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

I created this measure

Profit = CALCULATE(SUM(Winter_Contracts_Zema[Price]), Winter_Contracts_Zema[Trade Day - Buy] = [Buy_Trade Value]) - CALCULATE(SUM(Winter_Contracts_Zema[Price]), Winter_Contracts_Zema[Trade Day - Buy] = [Sell_Trade Value])
 
But I get this error
 
A function 'CALCULATE' has been used in a True/False expression that is used as a table filter expression. This is not allowed.
 
By trade Value is a parameter table i Created to emulate this dax calculation
 
Profit = CALCULATE(SUM(Winter_Contracts_Zema[Price]), Winter_Contracts_Zema[Trade Day - Buy] = 148  - CALCULATE(SUM(Winter_Contracts_Zema[Price]), Winter_Contracts_Zema[Trade Day - Buy] = 244)
 
I need the trade day filter values to change dynamically by end user, like a parameter. Any ideas?
 
All the help is highly appreciated
Capture8.PNG

Hi @Anonymous ,

Please try to update the formula of your measure "Profit" just like below(the red font part is newly add):

Profit =
CALCULATE (
    SUM ( Winter_Contracts_Zema[Price] ),
    FILTER (
        ALL ( Winter_Contracts_Zema[Trade Day - Buy] ),
        Winter_Contracts_Zema[Trade Day - Buy] = [Buy_Trade Value]
    )
)
    CALCULATE (
        SUM ( Winter_Contracts_Zema[Price] ),
        FILTER (
            ALL ( Winter_Contracts_Zema[Trade Day - Buy] ),
            Winter_Contracts_Zema[Trade Day - Buy] = [Sell_Trade Value]
        )
    )

Best Regards

Rena

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

Thank you!! my profit measure is now working!

 

This is probably very simple, as it is in excel but I cant figure it out in Power Bi

I need to count the number of times my profit measure gave > 0 results.

 

=COUNTIF(Profit>0")

 

But i get an error in power Bi as it doesnt accept a measure as a filter. Any ideas? Im stuck in something so simple.

 

I also tried Calculate(Count(Winter_Contracts_Year)), [profit] > 0)

 

Capture9.PNG

 

I  highly appreciate the best practice here.

 

 

 

From my 

Anonymous
Not applicable

I solved it by using the value function in my measure! thanks to everyone who took the time to read this!

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.