Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello
I have a problem that I am trying to solve and cannot get it sorted currently
I have a table of data from Azure Devops which includes history for every item in the system. This data has multiple lines with the same Work ID each of which has a Date field which states when the history was taken.
I have created a new table that has just the unique work IDs and I want to bring through one of the other fields in the main table based on the workID and also the Date field (So a lookup with 2 criteria) but the Date field will be controlled by a slicer and I cannot work out how to create this
Data example
Result in second table if March 2019 is selected
Solved! Go to Solution.
try this measure:
Measure =
IF ( HASONEVALUE(Table1[Info]),
CALCULATE(
VALUES( Table1[Info]),
CALCULATETABLE(
Table1,
ALLSELECTED(Table1[Date])
)
)
)Hi,
Select any date in the slicer. Drag the Work Item ID and Info field to the Table visual.
try this measure:
Measure =
IF ( HASONEVALUE(Table1[Info]),
CALCULATE(
VALUES( Table1[Info]),
CALCULATETABLE(
Table1,
ALLSELECTED(Table1[Date])
)
)
)The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |