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
kagy100
Advocate II
Advocate II

Dax Assistance Required with Measure

Hi Team,

 

I needed your kind assistance with the below . .. 

The .pbix file can be found here 

 

question.JPG

 

 

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

Hey, @kagy100

According to your description, I created data to reproduce your scenario. The pbix file is attached at the end.

Table A:

c1.png

Table B:

c2.png

There's a relationship between tables. You can create measures as follows.

Start Month = 
FORMAT(
    CALCULATE(
        MAX('Table A'[Date]),
        FILTER(
            ALL('Table A'),
            [Date]<=MAX('Table B'[Motor Enhancement Date])
        )
    ),
    "mmm-yy"
)
End Month = 
FORMAT(
    CALCULATE(
        MIN('Table A'[Date]),
        FILTER(
            ALL('Table A'),
            [Date]>MAX('Table B'[Motor Enhancement Date])
        )
    ),
    "mmm-yy"
)
Start Month Value = 
var startdate = 
CALCULATE(
        MAX('Table A'[Date]),
        FILTER(
            ALL('Table A'),
            [Date]<=MAX('Table B'[Motor Enhancement Date])
        )
)
return
CALCULATE(
    SUM('Table A'[Motor Value]),
    FILTER(
        ALL('Table A'),
        [Date]<=startdate
    )
)
End Month Value = 
var enddate = 
CALCULATE(
        MIN('Table A'[Date]),
        FILTER(
            ALL('Table A'),
            [Date]>MAX('Table B'[Motor Enhancement Date])
        )
)
return
CALCULATE(
    SUM('Table A'[Motor Value]),
    FILTER(
        ALL('Table A'),
        [Date]>=enddate
    )
)

Result:

c3.png

Best regards

Allan

If this post helps, then consider Accepting it as the solution to help other members find it faster.

View solution in original post

4 REPLIES 4
v-alq-msft
Community Support
Community Support

Hey, @kagy100

According to your description, I created data to reproduce your scenario. The pbix file is attached at the end.

Table A:

c1.png

Table B:

c2.png

There's a relationship between tables. You can create measures as follows.

Start Month = 
FORMAT(
    CALCULATE(
        MAX('Table A'[Date]),
        FILTER(
            ALL('Table A'),
            [Date]<=MAX('Table B'[Motor Enhancement Date])
        )
    ),
    "mmm-yy"
)
End Month = 
FORMAT(
    CALCULATE(
        MIN('Table A'[Date]),
        FILTER(
            ALL('Table A'),
            [Date]>MAX('Table B'[Motor Enhancement Date])
        )
    ),
    "mmm-yy"
)
Start Month Value = 
var startdate = 
CALCULATE(
        MAX('Table A'[Date]),
        FILTER(
            ALL('Table A'),
            [Date]<=MAX('Table B'[Motor Enhancement Date])
        )
)
return
CALCULATE(
    SUM('Table A'[Motor Value]),
    FILTER(
        ALL('Table A'),
        [Date]<=startdate
    )
)
End Month Value = 
var enddate = 
CALCULATE(
        MIN('Table A'[Date]),
        FILTER(
            ALL('Table A'),
            [Date]>MAX('Table B'[Motor Enhancement Date])
        )
)
return
CALCULATE(
    SUM('Table A'[Motor Value]),
    FILTER(
        ALL('Table A'),
        [Date]>=enddate
    )
)

Result:

c3.png

Best regards

Allan

If this post helps, then consider Accepting it as the solution to help other members find it faster.

Thank You @v-alq-msft for the kind assistance. 🙂

TomMartens
Super User
Super User

Hey @kagy100 ,

 

please consider creating a pbix file that contains the sample data from above. Upload the pbix to onedrive or dropbox and share the link.

 

I'm not sure what you have, meaning what data is available and what data needs to be calculated. I'm also wondering if a relationship between both tables can be established.

 

Regards,

Tom 



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Thanks for replying Tom,

 

The .pbix file can be found here: Usage Example 

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

MayPowerBICarousel

Fabric Monthly Update - May 2024

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

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.