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.
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!
Solved! Go to Solution.
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]
)
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.
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]
)
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.
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
@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/