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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
winnieymh
Regular Visitor

How to filter 2 columns in one table using one slicer?

Hi, 

I have 1 table contains 2 different date column and one amount column. I want to create a measure to calculate the sum of amount for both date column's date before selected date. 

Let's see the example below:

For I want to sum up the amount for both date column less than the select datetime (using slicer created by calendar table to select date):

winnieymh_0-1627567803491.pngwinnieymh_1-1627567821551.png

 

1 ACCEPTED SOLUTION
dedelman_clng
Community Champion
Community Champion

Hi @winnieymh  - try something like this:

Measure1 =
VAR __Dt =
    SELECTEDVALUE ( [Date from Slicer] )
RETURN
    CALCULATE ( SUM ( Record[Amount] ), Calendar[Date] < __Dt )
        + CALCULATE (
            SUM ( Record[Amount] ),
            Calendar[Date] < __Dt,
            USERELATIONSHIP ( Record[Date2], Calendar[Date] )
        )

 

Hope this helps

David

View solution in original post

2 REPLIES 2
dedelman_clng
Community Champion
Community Champion

Hi @winnieymh  - try something like this:

Measure1 =
VAR __Dt =
    SELECTEDVALUE ( [Date from Slicer] )
RETURN
    CALCULATE ( SUM ( Record[Amount] ), Calendar[Date] < __Dt )
        + CALCULATE (
            SUM ( Record[Amount] ),
            Calendar[Date] < __Dt,
            USERELATIONSHIP ( Record[Date2], Calendar[Date] )
        )

 

Hope this helps

David

Thank you so much, it's a very good suggestion!!

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.

Top Solution Authors