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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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.


Go to My LinkedIn Page


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/

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.