The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
HELP ME OUT....
Solved! Go to Solution.
There are two ways of doing this into powerbi.
1. In the Query Editor, Select particular column, Right Click and Remove other columns.
2. Connect your model to DAX Studio and Write the below syntax.
EVALUATE
TABLE[COLUMN NAME]
Run this Query againest your model and you can extract the results into .TXT file.
3. In the Query editor, You can select the particular column in your table and convert it to the list.
You can also use SUMMARIZECOLUMNS Function (DAX) to return one column of a table.
Best Regards,
Herbert
There are two ways of doing this into powerbi.
1. In the Query Editor, Select particular column, Right Click and Remove other columns.
2. Connect your model to DAX Studio and Write the below syntax.
EVALUATE
TABLE[COLUMN NAME]
Run this Query againest your model and you can extract the results into .TXT file.
3. In the Query editor, You can select the particular column in your table and convert it to the list.