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 this DAX code, but it is retrieves a lot of duplicates values:
VAR finalEmpty=
CALCULATETABLE(
SELECTCOLUMNS(Planing,
"Hours", "empty",
"Assignment", "empty",
"Student", RELATED('Student current'[Name]),
"Student Number", related('Student current'[Student Number]),
"Date","empty",
),
not (Planing[DW_EK_Student] in (Special2)),
Planing[DW_EK_Student] in (empty2)
)
How could I do a SELECTDISTINCT ??
Ps: special2 is
var Special =
FILTER(SUMMARIZE(Planing, Planing[DW_EK_Student],'Date'[Week Year Week Number])
, 'Date'[Week Year Week Number]=Nextw || 'Date'[Week Year Week Number]=NextNextw
)
var Special2=SUMMARIZE(Special, Planing[DW_EK_Student])
Empty2 is
var Empty1 =
FILTER(
SUMMARIZE(
'Student Current', 'Student Current'[DW_EK_Student],'Student Current'[Position],'Student Current'[Employment Status]),
'Student Current'[Position]<>"BT" && 'Student Current'[Employment Status] = "Active"
)
Var empty2 = SUMMARIZE(Empty1,'Student Current'[DW_EK_Student])
@ovonel You can use DISTINCT.
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 |
---|---|
21 | |
19 | |
17 | |
9 | |
5 |
User | Count |
---|---|
36 | |
29 | |
16 | |
15 | |
12 |