March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
i have updated the eventname in database now
but filter dropdown not refelcting with new values as well as i dont want chrismas multiple time
Solved! Go to Solution.
Hi,
As per my understanding, you are facing an issue with filtering out distinct values in the slicer, but the slicer already returns distinct values by default, when you're using a slicer for a column like EventName that contains repeated values (e.g., Christmas, Halloween), but you only want to show distinct values in the dropdown, you can achieve this easily by ensuring that the slicer only shows unique values.
Here’s how you can ensure the slicer shows distinct values:
If you need to make sure the data in the slicer reflects only distinct values, use the following approach:
DAX
DistinctEvents = DISTINCT(YourTable[EventName])
This formula creates a new table DistinctEvents that contains only unique EventName values from your original table.
Now, the slicer will show only distinct values, and the user can select from a dropdown without duplicates.
Thanks!
Hi,
As per my understanding, you are facing an issue with filtering out distinct values in the slicer, but the slicer already returns distinct values by default, when you're using a slicer for a column like EventName that contains repeated values (e.g., Christmas, Halloween), but you only want to show distinct values in the dropdown, you can achieve this easily by ensuring that the slicer only shows unique values.
Here’s how you can ensure the slicer shows distinct values:
If you need to make sure the data in the slicer reflects only distinct values, use the following approach:
DAX
DistinctEvents = DISTINCT(YourTable[EventName])
This formula creates a new table DistinctEvents that contains only unique EventName values from your original table.
Now, the slicer will show only distinct values, and the user can select from a dropdown without duplicates.
Thanks!
Hi @Aartibhilare ,
For distinct records, you can create a calculated table with distinct records and then create a relationship between your original table and the calculated table as one to many relationship.
Now use the column from calculated table in the slicer, this will give you only unique records in your slicer.
for the refresh issue, you can manually check refreshing it in the power query and see if the values are reflecting or not.
Please let me know if I misunderstood anything or share more details for your query.
If you’re satisfied with the answer, don’t forget to mark it as the solution to help others find it faster.
A thumbs-up is always appreciated!
Thanks,
Ankita
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
82 | |
69 | |
53 | |
44 |
User | Count |
---|---|
202 | |
106 | |
100 | |
64 | |
56 |