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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It 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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.