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
Hi good morning, I'm trying to make a column where using a date selected from another table from the Report view pane.
Right now I have this:
Solved! Go to Solution.
Hi @Syndicate_Admin ,
Here some steps that I want to share, you can check them if they suitable for your requirement.
Here is my test data:
Total tickets
Time
Create measure
Datediff =
IF(
SELECTEDVALUE('Total Tickets'[Request Status]) IN {"Open", "Ongoing", "On hold", "Standby Provider", "On Standby User", "Postponed", "Resolved"},
IF(
SELECTEDVALUE('Total Tickets'[End Date]) IN {BLANK()},
DATEDIFF(
SELECTEDVALUE('Total Tickets'[Date created]),
SELECTEDVALUE('Time'[Another date]),
HOUR
),
BLANK()
)
)
Final output
Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Syndicate_Admin I try it and let you know if it has worked for me
Thank you!
Hi @Syndicate_Admin ,
Here some steps that I want to share, you can check them if they suitable for your requirement.
Here is my test data:
Total tickets
Time
Create measure
Datediff =
IF(
SELECTEDVALUE('Total Tickets'[Request Status]) IN {"Open", "Ongoing", "On hold", "Standby Provider", "On Standby User", "Postponed", "Resolved"},
IF(
SELECTEDVALUE('Total Tickets'[End Date]) IN {BLANK()},
DATEDIFF(
SELECTEDVALUE('Total Tickets'[Date created]),
SELECTEDVALUE('Time'[Another date]),
HOUR
),
BLANK()
)
)
Final output
Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Perfect, works properly, thank you!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 35 | |
| 34 | |
| 31 | |
| 27 |
| User | Count |
|---|---|
| 135 | |
| 102 | |
| 67 | |
| 65 | |
| 56 |