Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I have a table of facts and several tables of measures to supplement it.
I need to output a list of report names that do not occur in the fact table for the selected date.
I will need to do similar manipulations with other measures (users, workgroups, etc.) And these measures can be both a source for the list of values and a filter for the fact table.
Any Ideas how to do it?
Solved! Go to Solution.
Found solution by myself.
I have created mesure:
isMissingReport =
VAR CurrentReportID = SELECTEDVALUE( report[id] )
VAR FilteredReportIDs =
CALCULATETABLE (
VALUES ( fact[reportid] )
)
RETURN
IF (
NOT CONTAINS ( FilteredReportIDs, fact[reportid], CurrentReportID ),
"TRUE",
"FALSE"
)
and add this measure in visuals as filter.
As result have this picture:
All filters work. And I alse create same measures for other dims (user etc.)
Found solution by myself.
I have created mesure:
isMissingReport =
VAR CurrentReportID = SELECTEDVALUE( report[id] )
VAR FilteredReportIDs =
CALCULATETABLE (
VALUES ( fact[reportid] )
)
RETURN
IF (
NOT CONTAINS ( FilteredReportIDs, fact[reportid], CurrentReportID ),
"TRUE",
"FALSE"
)
and add this measure in visuals as filter.
As result have this picture:
All filters work. And I alse create same measures for other dims (user etc.)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
145 | |
87 | |
66 | |
52 | |
45 |
User | Count |
---|---|
215 | |
90 | |
83 | |
66 | |
58 |