๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ

Power BI/DAX

[Power BI] DAX - DATATABLE ํ•จ์ˆ˜๋กœ Static table ๋งŒ๋“ค๊ธฐ

๋ฐ˜์‘ํ˜•
SEGMENTS_DATATABLE =
DATATABLE (
    "PRICE RANGE", STRING,
    "MIN PRICE", CURRENCY,
    "MAX PRICE", CURRENCY,
    {
        { "LOW", 0, 10 },
        { "MEDIUM", 10, 100 },
        { "HIGH", 100, 9999999 } 
    }
)

 

https://www.sqlbi.com/articles/create-static-tables-in-dax-using-the-datatable-function/

 

Create Static Tables in DAX Using the DATATABLE Function - SQLBI

You can create static tables in DAX using the DATATABLE function. This article describes the syntax of this new feature and shows when and how to use it. UP

www.sqlbi.com

 

๋ฐ˜์‘ํ˜•

'Power BI > DAX' ์นดํ…Œ๊ณ ๋ฆฌ์˜ ๋‹ค๋ฅธ ๊ธ€

[Power BI] DAX - CALCULATE  (0) 2021.02.23
[Power BI] DAX - Dynamic Index  (0) 2020.09.01
[Power BI] DAX - The GENERATESERIES function  (0) 2019.08.07
[Power BI] DAX - SUMMARIZE + UNION ํ…Œ์ด๋ธ” ๊ฒฐํ•ฉ  (0) 2019.08.07
[Power BI] DAX - Creating an Index Column  (0) 2019.08.07