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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
azaterol
Helper V
Helper V

Matrix correct dax solution

Hey all,

 

in my matrix I have a measure for "August" which is :

For 4300:

August = calculate(SUM(DOK[salary1]),filter(DOK, DOK[DokDate]>=date(2022,08,01) && DOK[DokDate]<=date(2022,08,30)))

 As you can see I have in my Matrix row the SaNr and in my Matrix value the August measure.

 
For 4400 I want the measure calculate with salary2, like this:
August = calculate(SUM(DOK[salary2]),filter(DOK, DOK[DokDate]>=date(2022,08,01) && DOK[DokDate]<=date(2022,08,30)))
 
But as you know, I only can use one measure for an value

 

As you can see I have in my Matrix row the SaNr and in my Matrix value the August measure.

 

 

saaa.PNG

 xxx.PNG

 

 

 

 

 

 

The Result calculates for both SaNr(4300 and 4400) with salary1, but 4400 shoul calculate with salary2. How can I do this?

sum.PNG

 

Thank you for help

3 REPLIES 3
v-xiaotang
Community Support
Community Support

Hi @azaterol 

Thanks for reaching out to us.

I just want to confirm if you resolved this issue? If yes, you can accept the answer helpful as the solution or share you method and accept it as solution, thanks for your contribution to improve Power BI.

If you need more help, please let me know.

 

Best Regards,

Community Support Team _Tang

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

tamerj1
Super User
Super User

Hi @azaterol 

please try

August =
IF (
    SELECTEDVALUE ( DOK[SaNr] ) = "4300",
    CALCULATE (
        SUM ( DOK[salary1] ),
        FILTER (
            DOK,
            DOK[DokDate] >= DATE ( 2022, 08, 01 )
                && DOK[DokDate] <= DATE ( 2022, 08, 30 )
        )
    ),
    CALCULATE (
        SUM ( DOK[salary2] ),
        FILTER (
            DOK,
            DOK[DokDate] >= DATE ( 2022, 08, 01 )
                && DOK[DokDate] <= DATE ( 2022, 08, 30 )
        )
    )
)
calerof
Impactful Individual
Impactful Individual

Hi @azaterol ,

I'd be happy to help if you provide sample data please.

Fernando

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!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

Feb2025 NL Carousel

Fabric Community Update - February 2025

Find out what's new and trending in the Fabric community.