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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
ashu710
Frequent Visitor

Duplicates using Date and Duplicate/Original Slicer

Hi all, I would like to implement two slicers on a table similar to the one below. One for date and the other one for duplicates. For example, if the Duplicate/Original slicer says "Original" and Date Slicer says "01-01-2022" to "07-01-2022" the visual should show "3" and if the Duplicate/Original says "Duplicate" in the same date range, the visual should show 4. Thanks.

ashu710_0-1642518776909.png

 

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

Hi, @ashu710 

Try this:

result =
VAR _originalValues =
    DISTINCTCOUNT( yourTable[valuesColumn] )
VAR _duplicateValues =
    COUNT( yourTable[valuesColumn] ) - _originalValues
VAR _if =
    SWITCH(
        TRUE(),
        SELECTEDVALUE( 'theTable'[Slicer] ) = "Original", _originalValues,
        SELECTEDVALUE( 'theTable'[Slicer] ) = "Duplicate", _duplicateValues
    )
RETURN
    _if

 

 

Best Regards,
Community Support Team _ Zeon Zheng

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

View solution in original post

3 REPLIES 3
v-angzheng-msft
Community Support
Community Support

Hi, @ashu710 

Try this:

result =
VAR _originalValues =
    DISTINCTCOUNT( yourTable[valuesColumn] )
VAR _duplicateValues =
    COUNT( yourTable[valuesColumn] ) - _originalValues
VAR _if =
    SWITCH(
        TRUE(),
        SELECTEDVALUE( 'theTable'[Slicer] ) = "Original", _originalValues,
        SELECTEDVALUE( 'theTable'[Slicer] ) = "Duplicate", _duplicateValues
    )
RETURN
    _if

 

 

Best Regards,
Community Support Team _ Zeon Zheng

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

BA_Pete
Super User
Super User

 

Wow, didn't fancy waiting a few hours for your answer on the other thread, huh?

I'll close off the old thread as you now have this one open as well.

 

FWIW, I'd be interested to know why you need to add this amount of complexity into your reporting when 99% of the time just displaying the two measures I gave you in the other thread would more than suffice.

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Hi @BA_Pete there's reporting that needs to be done on an urgent basis. I had already presented the solution you sent to my manager, and he thought that this would be an ideal solution. A few more calculations would be based off those measures, which I am unable to present using the given solution. Thanks.

 

Ashu

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors
Top Kudoed Authors