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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Thulasiram
Helper I
Helper I

Total mistake

Dear all

 

I have the following matrix.

Screenshot 2024-05-08 090148.png

I have the following DAX to calculate FFL_YTD_REV by adding the "Addback Dep" value.

Screenshot 2024-05-08 090343.png

The problem to solve for me here is the "Addback dep" is added in the total also in FFL_YTD_REV which I don't want.

How to achieve that, pls help.

Thanks.

1 ACCEPTED SOLUTION
danextian
Super User
Super User

hI @Thulasiram ,

 

You need to add a condition so Addback Dep is not included in the total which would be something like:

IF (
    NOT ( HASONEVALUE ( 'table'[ffl major column] ) ),
    [mesure without addback dep],
    [measure with addback dep]
)









Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

View solution in original post

2 REPLIES 2
danextian
Super User
Super User

hI @Thulasiram ,

 

You need to add a condition so Addback Dep is not included in the total which would be something like:

IF (
    NOT ( HASONEVALUE ( 'table'[ffl major column] ) ),
    [mesure without addback dep],
    [measure with addback dep]
)









Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Yes, it is working. Thanks @danextian .

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.