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.
Solved! Go to Solution.
Hi @Bobfather
Have you considered pivoting your data so instead of having 1 row with three date columns, turn that 1 row into 3 rows
eg.
ID, Created, Planned, Delivered --------------------------------
1 ,2017-1-1, 2017-1-5, 2017-1-9
ID, State , DateVal
--------------------
1 , Created , 2017-1-1
1 , Planned , 2017-1-5
1 , Delivered , 2017-1-9
. This might make your task a little easier.
Hi @Bobfather
Have you considered pivoting your data so instead of having 1 row with three date columns, turn that 1 row into 3 rows
eg.
ID, Created, Planned, Delivered --------------------------------
1 ,2017-1-1, 2017-1-5, 2017-1-9
ID, State , DateVal
--------------------
1 , Created , 2017-1-1
1 , Planned , 2017-1-5
1 , Delivered , 2017-1-9
. This might make your task a little easier.