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


Power BI

(19)
[Power BI] Json ๋ฐ์ดํ„ฐ ๋ถˆ๋Ÿฌ์˜ค๊ธฐ ๋ฐ์ดํ„ฐ ๊ฐ€์ ธ์˜ค๊ธฐ > ์ž์„ธํžˆ... ํŒŒ์ผ - JSON ์ž˜๋ชป๋œ ๋ฐ์ดํ„ฐ ์žˆ์„ ๊ฒฝ์šฐ ์˜ค๋ฅ˜ ๋ฐœ์ƒ
[Power BI] DAX - Dynamic Index No. = CALCULATE ( COUNT ( 'Data'[์ธ๋ฑ์Šค] ), FILTER (ALLSELECTED ('Data'), 'Data'[์ธ๋ฑ์Šค]
[Power BI] Power Query M ํ•จ์ˆ˜ - Oracle์˜ LPAD ๊ธฐ๋Šฅ Text.PadStart Text.PadStart("Name", 5, "0") "0Name" https://docs.microsoft.com/en-us/powerquery-m/text-padstart Text.PadStart - PowerQuery M docs.microsoft.com
[Power BI] Power Query M ํ•จ์ˆ˜ - Error Handling https://docs.microsoft.com/ko-kr/powerquery-m/m-spec-error-handling M Language Error Handling - PowerQuery M Use the "create from blank" option to create a custom connector for Power Automate and Power Apps docs.microsoft.com
[Power BI] Power Query M ํ•จ์ˆ˜ - let, in let a = [์—ด1], list1 = Table.SelectRows([Table], each [begin] = a)[index] in List.Intersect({list1, list2})โ€‹ let statement ์—์„œ ๋ณ€์ˆ˜ ์„ ์–ธ, ํ•จ์ˆ˜ ์„ ์–ธ, ํ˜ธ์ถœ ๊ฐ€๋Šฅ a ๋ณ€์ˆ˜์— [์—ด1] ๋Œ€์ž… [Table]์—์„œ [begin]์ด a ๋ณด๋‹ค ์ž‘๊ฑฐ๋‚˜ ๊ฐ™์€ ๊ฐ’๋“ค์˜ index๋ฅผ list1์— ๋Œ€์ž… [Table]์—์„œ [end]์ด a ๋ณด๋‹ค ํฌ๊ฑฐ๋‚˜ ๊ฐ™์€ ๊ฐ’๋“ค์˜ index๋ฅผ list2์— ๋Œ€์ž… ์ตœ์ข… = list1, list2์ค‘ ์ค‘๋ณต ๊ฐ’ let Add = (x, y) => x + y, AddResults = [ OnePlusOne = Add(1, 1), // equals 2 OnePlusTwo = Add(1, 2) // equals 3 ..
[Power BI] DAX - The GENERATESERIES function https://www.sqlbi.com/articles/generating-a-series-of-numbers-in-dax/ Generating a series of numbers in DAX - SQLBI This article describes how to create a table with a series of numbers in DAX by using the new GENERATESERIES function or through a workaround using CALENDAR www.sqlbi.com
[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..
[Power BI] DAX - SUMMARIZE + UNION ํ…Œ์ด๋ธ” ๊ฒฐํ•ฉ Table F = UNION ( SUMMARIZE ( TableA, TableA[a6], TableA[a8x], "hits", COUNT ( TableA[a5] ) ), SUMMARIZE ( TableB, TableB[b2], TableB[b1], TableB[b3x] ) ) https://community.powerbi.com/t5/Desktop/Union-column-order/td-p/216101 Union column order I'm trying to use the UNION function with two summarized tables and a third table. The first two tables are summarized in the exact same way, and their ..