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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
How make a create this as a single column start date with timestamp and end date with timestamp and i want to join that datetimestamo with another table
Solved! Go to Solution.
Follow this. You can force join in measure
I am not 100% certain what you are trying to achieve. Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
But, if you are trying to get 1 column with all of the values from both of the columns you can use SELECTVALUES and UNION like:
Table =
DISTINCT(
UNION(
SELECTCOLUMNS('Table',"Column",[DateAdd]),
SELECTCOLUMNS('Table',"Column",[DateSub),
)
)
Something like that.
Follow this. You can force join in measure