The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hello,
I created a Table in PowerBI Desktop:
Solved! Go to Solution.
Hi @kressb ,
you can append more rows/tables with UNION.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Hi @kressb ,
you can append more rows/tables with UNION.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Yes, but I don't have any table to UNION them from.
IE the data exists only in my head and I want to enter it into the table
You could use the Enter data button to create a new table with the data in your head or else define it as a DATATABLE with DAX.
Hi @kressb ,
then you must create the table in the same structure with DATATABLE
https://docs.microsoft.com/en-us/dax/datatable-function
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
@AlexisOlson @mwegener
Ok, so selected enter data, created another table with my manual data - used all the same columns in the exact same order and formated them all correctly.
went back to the original table I created. called that one var _Table1 and then set a Union:
Update: read this thread: Union column order - Microsoft Power BI Community
Had to add a nested Summarize to the Second New Table to get it to work..
Seems like a lot more work than it should be...
Your second table needs to match the columns of the table you are unioning it with, not the original shape of the table you are summarizing. Having [UniqueID1] twice in your summary might make this problematic.