Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
Anonymous
Not applicable

Is there a way to convert a visualisation table into a data table?

I have created a visualisation table based on my raw data and I am trying to convert it to a data table so that I can use those values for another set of calculations. Please advise if this is doable. Thanks in advance!

agatheeben_0-1620811599648.png

 

1 ACCEPTED SOLUTION
v-kkf-msft
Community Support
Community Support

Hi @Anonymous ,

 

You can try to create a calculate table like the fllowing formula.

Calculate Table = 
var tab = 
    FILTER(
        'Product Line Map',
        QUARTER('Product Line Map'[date]) = 2
    )
return 
    SELECTCOLUMNS(
        tab,
        "Product", 'Product Line Map'[Product line],
        "YEAR", YEAR('Product Line Map'[date]),
        "QUARTER", QUARTER('Product Line Map'[date]),
        "Status", 'Product Line Map'[Quotation aprogress Status],
        "%GT", 'Product Line Map'[%GT Count of Quotation]
    )

 image.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.

Best Regards,
Winniz

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-kkf-msft
Community Support
Community Support

Hi @Anonymous ,

 

You can try to create a calculate table like the fllowing formula.

Calculate Table = 
var tab = 
    FILTER(
        'Product Line Map',
        QUARTER('Product Line Map'[date]) = 2
    )
return 
    SELECTCOLUMNS(
        tab,
        "Product", 'Product Line Map'[Product line],
        "YEAR", YEAR('Product Line Map'[date]),
        "QUARTER", QUARTER('Product Line Map'[date]),
        "Status", 'Product Line Map'[Quotation aprogress Status],
        "%GT", 'Product Line Map'[%GT Count of Quotation]
    )

 image.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.

Best Regards,
Winniz

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Jihwan_Kim
Super User
Super User

Hi, @Anonymous 

I am not sure if I understood your question correctly, but in general cases, you can create a virtual table inside a measure and analyze it. Or, you can create an actual table by using the table-creation function and analyze it.

Or, one of the easiest ways is that export the table visualization to excel or csv, then import the file into the power bi desktop.

 

If it is OK with you, please share your sample pbix file's link here with how your desired outcome looks like, then I can try to look into it to come up with a solution.

 

Thank you.

 

Hi, My name is Jihwan Kim.

 

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

 

Linkedin: linkedin.com/in/jihwankim1975/

Twitter: twitter.com/Jihwan_JHKIM


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.
amitchandak
Super User
Super User

@Anonymous , You can use summarizecolumns to do that. But these tables will not change based  slicer filters 

 

refer for more details https://www.sqlbi.com/articles/introducing-summarizecolumns/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Kudoed Authors