Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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
Proud to be a Datanaut!
Hi @ashu710 ,
Use measures like this:
_originalValues = DISTINCTCOUNT(yourTable[valuesColumn])
_duplicateValues = COUNTROWS(yourTable) - [_originalValues]
Pete
Proud to be a Datanaut!
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
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 7 | |
| 5 | |
| 5 | |
| 5 | |
| 4 |