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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
GinoM
New Member

How To create a list of Debits or Credits from a Profit and Loss Column

This is so simple to do in Excel but I'm struggling to replicate using Dax measure  which im new to

 
I have a table of Sales items   and a Table of Cost items    Ive created simple sum measures to give me Total Sales   and another to give me Total Costs ..    A third Measure "Sales" - "Cost"    Gives me Profit and Loss.. by a list of projects.

Rather Than a single column for profit and Loss   Im trying to create  a column for Profit and another for Loss  ..     

I acheive a sort of result using an If statement   ie  Profit:= IF([Sales]>[Cost],[Sales]-[Cost],"0")     whilst this gives me values per  project  I don't get a total value  nor I'm i able to use the measure "Profit"    as part of any other calculation .... 

Thanks 

Gino

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

Hi @GinoM ,

 

Can you try some measures like the following:

Profit =
VAR _sales =
    CALCULATE(
        SUM( table[Sales] ),
        FILTER( table, [project] = EARLIER( table[project] ) )
    )
VAR _costs =
    CALCULATE(
        SUM( table[Costs] ),
        FILTER( table, [project] = EARLIER( table[project] ) )
    )
RETURN
    IF( _sales > _costs, _sales - _costs, 0 )

 

This only works fine in creating a column and each rows of one project will get the same result.

If you want a summary table, you may try SUMMARIZE()

 

Best Regards

Community Support Team _ chenwu zhu

 

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-chenwuz-msft
Community Support
Community Support

Hi @GinoM ,

 

Can you try some measures like the following:

Profit =
VAR _sales =
    CALCULATE(
        SUM( table[Sales] ),
        FILTER( table, [project] = EARLIER( table[project] ) )
    )
VAR _costs =
    CALCULATE(
        SUM( table[Costs] ),
        FILTER( table, [project] = EARLIER( table[project] ) )
    )
RETURN
    IF( _sales > _costs, _sales - _costs, 0 )

 

This only works fine in creating a column and each rows of one project will get the same result.

If you want a summary table, you may try SUMMARIZE()

 

Best Regards

Community Support Team _ chenwu zhu

 

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

Thanks for you help with this 😎

smpa01
Super User
Super User

@GinoM  posts with sample data (in table format) and desired output move very fast in this forum.

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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