<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Create table from measure in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Create-table-from-measure/m-p/1960958#M30547</link>
    <description>&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;HI&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/229137"&gt;@Analitika&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Perhaps you can take a look at the following blog which mentions the measure formula and calculation groups:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;A href="https://www.sqlbi.com/blog/marco/2020/07/15/creating-calculation-groups-in-power-bi-desktop/" target="_blank"&gt;Creating Calculation Groups in Power BI Desktop - SQLBI&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Xiaoxin Sheng&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 16 Jul 2021 01:20:33 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-07-16T01:20:33Z</dc:date>
    <item>
      <title>Create table from measure</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Create-table-from-measure/m-p/1956493#M30508</link>
      <description>&lt;P&gt;I have a lot of measures, i need create visual table from each measure median&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"LQ_Revenue_growth", [LQ Revenue growth]),&lt;BR /&gt;"TTM_Net_profit", [TTM Net profit]),&lt;BR /&gt;"LQ_Net_profit_growth", [LQ Net profit growth]),&lt;BR /&gt;"Market_Cap", [Market_Cap]),&lt;BR /&gt;"EV", [EV]),&lt;BR /&gt;"EV_EBITDA", [EV/EBITDA]),&lt;BR /&gt;"EV_FCF", [EV/FCF]),&lt;BR /&gt;"P_FCF", [P/FCF]),&lt;BR /&gt;"P_E", [P/E]),&lt;BR /&gt;"P_S", [P/S]),&lt;BR /&gt;"P_BV", [P/BV]),&lt;BR /&gt;"Dividend_yield", [Dividend yield]),&lt;BR /&gt;"Gross_margin", [Gross margin]),&lt;BR /&gt;"Operating_margin", [Operating margin]),&lt;BR /&gt;"EBITDA_margin", [EBITDA margin]),&lt;BR /&gt;"Net_margin", [Net margin]),&lt;BR /&gt;"ROE", [ROE]),&lt;BR /&gt;"ROA", [ROA]),&lt;BR /&gt;"ROCE", [ROCE]),&lt;BR /&gt;"ROIC", [ROIC]),&lt;BR /&gt;"Inventory_turnover", [Inventory turnover]),&lt;BR /&gt;"Acc_receivable_turnover", [Acc.receivable turnover]),&lt;BR /&gt;"Acc_payable_turnover", [Acc.payable turnover]),&lt;BR /&gt;"Cash_conversion_cycle", [Cash conversion cycle]),&lt;BR /&gt;"Working_Capital", [Working Capital]),&lt;BR /&gt;"Equity_ratio", [Equity ratio]),&lt;BR /&gt;"Liquidity_ratio", [Liquidity ratio]),&lt;BR /&gt;"Quick_ratio", [Quick ratio]),&lt;BR /&gt;"Liabilities_Equity", [Liabilities/Equity]),&lt;BR /&gt;"NET_DEBT", [NET DEBT]),&lt;BR /&gt;"Net_debt_EBITDA", [Net debt/EBITDA]),&lt;BR /&gt;"ICR", [ICR]),&lt;BR /&gt;"DSCR", [DSCR]),&lt;BR /&gt;"Market_Place", 'tbl_comp_info'[Market Place],&lt;BR /&gt;"Super_sector", 'tbl_comp_info'[Super sector],&lt;BR /&gt;"Industry_m", 'tbl_comp_info'[Industry_m],&lt;BR /&gt;"Last_reported_quarter", 'tbl_comp_info'[Last reported quarter],&lt;BR /&gt;"TTM_FCF", [TTM FCF]),&lt;BR /&gt;"TTM_OP_CF", [TTM OP_CF]),&lt;BR /&gt;"TTM_FFO", [TTM FFO]),&lt;BR /&gt;"Exchange_list", 'tbl_comp_info'[Exchange list]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thoose measures i added to matrix as values&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;now i need to create one row in same matrix without including in total&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or better new visual table where i need to count median of all companies&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So how to create table from measure?&lt;/P&gt;&lt;P&gt;As nor&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ADDCOLUMNS nor Sumarize not work from measure&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;Measure =&lt;BR /&gt;ADDCOLUMNS(&lt;BR /&gt;'tbl_Companies',&lt;BR /&gt;"MedianLQ_Revenue_growth", CALCULATE(MEDIAN('tbl_comp_ratios_others'[LQ Revenue growth])),&lt;BR /&gt;"MedianTTM_Net_profit", CALCULATE(Median('tbl_comp_ratios_others'[TTM Net profit])),&lt;BR /&gt;"MedianLQ_Net_profit_growth", CALCULATE(MEDIAN('tbl_comp_ratios_others'[LQ Net profit growth])),&lt;BR /&gt;"MedianMarket_Cap", CALCULATE(Median('tbl_comp_ratios_others'[Market_Cap])),&lt;BR /&gt;"MedianEV", CALCULATE(Median('tbl_comp_ratios_others'[EV])),&lt;BR /&gt;"MedianEV_EBITDA", CALCULATE(MEDIAN('tbl_comp_ratios_others'[EV/EBITDA])),&lt;BR /&gt;"MedianEV_FCF", CALCULATE(MEDIAN('tbl_comp_ratios_others'[EV/FCF])),&lt;BR /&gt;"MedianP_FCF", CALCULATE(MEDIAN('tbl_comp_ratios_others'[P/FCF])),&lt;BR /&gt;"MedianP_E", CALCULATE(MEDIAN('tbl_comp_ratios_others'[P/E])),&lt;BR /&gt;"MedianP_S", CALCULATE(MEDIAN('tbl_comp_ratios_others'[P/S])),&lt;BR /&gt;"MedianP_BV", CALCULATE(MEDIAN('tbl_comp_ratios_others'[P/BV])),&lt;BR /&gt;"MedianDividend_yield", CALCULATE(MEDIAN('tbl_comp_ratios_others'[Dividend yield])),&lt;BR /&gt;"MedianGross_margin", CALCULATE(MEDIAN('tbl_comp_ratios_others'[Gross margin])),&lt;BR /&gt;"MedianOperating_margin", CALCULATE(MEDIAN('tbl_comp_ratios_others'[Operating margin])),&lt;BR /&gt;"MedianEBITDA_margin", CALCULATE(MEDIAN('tbl_comp_ratios_others'[EBITDA margin])),&lt;BR /&gt;"MedianNet_margin", CALCULATE(MEDIAN('tbl_comp_ratios_others'[Net margin])),&lt;BR /&gt;"MedianROE", CALCULATE(MEDIAN('tbl_comp_ratios_others'[ROE])),&lt;BR /&gt;"MedianROA", CALCULATE(MEDIAN('tbl_comp_ratios_others'[ROA])),&lt;BR /&gt;"MedianROCE", CALCULATE(MEDIAN('tbl_comp_ratios_others'[ROCE])),&lt;BR /&gt;"MedianROIC", CALCULATE(MEDIAN('tbl_comp_ratios_others'[ROIC])),&lt;BR /&gt;"MedianInventory_turnover", CALCULATE(MEDIAN('tbl_comp_ratios_others'[Inventory turnover])),&lt;BR /&gt;"MedianAcc_receivable_turnover", CALCULATE(MEDIAN('tbl_comp_ratios_others'[Acc.receivable turnover])),&lt;BR /&gt;"MedianAcc_payable_turnover", CALCULATE(MEDIAN('tbl_comp_ratios_others'[Acc.payable turnover])),&lt;BR /&gt;"MedianCash_conversion_cycle", CALCULATE(MEDIAN('tbl_comp_ratios_others'[Cash conversion cycle])),&lt;BR /&gt;"MedianWorking_Capital", CALCULATE(Median('tbl_comp_ratios_others'[Working Capital])),&lt;BR /&gt;"MedianEquity_ratio", CALCULATE(MEDIAN('tbl_comp_ratios_others'[Equity ratio])),&lt;BR /&gt;"MedianLiquidity_ratio", CALCULATE(MEDIAN('tbl_comp_ratios_others'[Liquidity ratio])),&lt;BR /&gt;"MedianQuick_ratio", CALCULATE(MEDIAN('tbl_comp_ratios_others'[Quick ratio])),&lt;BR /&gt;"MedianLiabilities_Equity", CALCULATE(MEDIAN('tbl_comp_ratios_others'[Liabilities/Equity])),&lt;BR /&gt;"MedianNET_DEBT", CALCULATE(MEDIAN('tbl_comp_ratios_others'[NET DEBT])),&lt;BR /&gt;"MedianNet_debt_EBITDA", CALCULATE(MEDIAN('tbl_comp_ratios_others'[Net debt/EBITDA])),&lt;BR /&gt;"MedianICR", CALCULATE(MEDIAN('tbl_comp_ratios_others'[ICR])),&lt;BR /&gt;"MedianDSCR", CALCULATE(MEDIAN('tbl_comp_ratios_others'[DSCR])),&lt;BR /&gt;"Market_Place", BLANK(),&lt;BR /&gt;"Super_sector", BLANK(),&lt;BR /&gt;"Industry_m", BLANK(),&lt;BR /&gt;"Last_reported_quarter", BLANK(),&lt;BR /&gt;"MedianTTM_FCF", CALCULATE(Median('tbl_comp_ratios_others'[TTM FCF])),&lt;BR /&gt;"MedianTTM_OP_CF", CALCULATE(Median('tbl_comp_ratios_others'[TTM OP_CF])),&lt;BR /&gt;"MedianTTM_FFO", CALCULATE(Median('tbl_comp_ratios_others'[TTM FFO])),&lt;BR /&gt;"Exchange_list", BLANK()&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jul 2021 07:21:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Create-table-from-measure/m-p/1956493#M30508</guid>
      <dc:creator>Analitika</dc:creator>
      <dc:date>2021-07-14T07:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: Create table from measure</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Create-table-from-measure/m-p/1960958#M30547</link>
      <description>&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;HI&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/229137"&gt;@Analitika&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Perhaps you can take a look at the following blog which mentions the measure formula and calculation groups:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;A href="https://www.sqlbi.com/blog/marco/2020/07/15/creating-calculation-groups-in-power-bi-desktop/" target="_blank"&gt;Creating Calculation Groups in Power BI Desktop - SQLBI&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Xiaoxin Sheng&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jul 2021 01:20:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Create-table-from-measure/m-p/1960958#M30547</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-07-16T01:20:33Z</dc:date>
    </item>
  </channel>
</rss>

