Forum Discussion
Anonymous
5 years agoNot applicable
Remove duplicates in DAX
Hi Guys, Edit: Proving more informations I have this two different tables, the fact table (many ids) and my time table (unique id) TABLE 1 FACT TimeID ID start time finish time 1 ...
- 5 years ago
danextian
Super User
5 years agohI Anonymous ,
You can try this formula to be used as a visual filter where value = 1
FirstValue =
IF (
SELECTEDVALUE ( 'FACT'[start time] )
= CALCULATE ( MIN ( 'FACT'[start time] ), ALLEXCEPT ( 'FACT', 'FACT'[ID] ) ),
1,
0
)