Hi Everyone, I wanted to display the number of occurrences within a slicer date range. For example, if I set the slicer says "01-01-2022" to "07-01-2022", the visual should mention "Original Values: 3", "Duplicate Values: 4". Thanks for the help.
Solved! Go to Solution.
Hi @ashu710 ,
Use measures like this:
_originalValues = DISTINCTCOUNT(yourTable[valuesColumn])
_duplicateValues = COUNTROWS(yourTable) - [_originalValues]
Pete
Hi @ashu710 ,
Use measures like this:
_originalValues = DISTINCTCOUNT(yourTable[valuesColumn])
_duplicateValues = COUNTROWS(yourTable) - [_originalValues]
Pete
Hi @BA_Pete thanks for your help. What if I want to use the slicer for Original Or Duplicate values? This is because there's some data associated with them as well. Thank you.
Ashu
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Mark your calendars and join us on Thursday, June 30 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
104 | |
26 | |
18 | |
16 | |
11 |
User | Count |
---|---|
106 | |
33 | |
27 | |
17 | |
15 |