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,
Please help to create a new table (TableB) from the existing one (TableA):
I tried creating a new table in DAX with this but no luck,
Try this calculated table:
TableB =
SELECTCOLUMNS (
GENERATE ( TableA, CALENDAR ( TableA[StartDate], TableA[EndDate] ) ),
"ProductName", TableA[ProductName],
"Date", [Date]
)
Proud to be a Super User!