├── Arrow Chart ├── Arrow Chart 3 variations.pbix └── README.md ├── Custom Shape Map ├── Alpha 2 Country Code.xlsx ├── CustomMap.pbix └── README.md ├── Datasets ├── README.md └── Sport Products Sales Analysis.xlsx ├── Dynamic Sorting ├── ReadME.md ├── Top Bottom With Dynamic Sorting with two measures.pbix └── Top Bottom With Dynamic Sorting.pbix ├── Dynamic TopN ├── Readme.MD └── TOP N_ Final.pbix ├── Highlight Min_Max ├── Highlight Min Max months over Years.pbix └── README.md ├── README.md ├── SVG Bar Charts ├── Gradient Bar Chart ├── README.md └── Sales_SVG Bar.csv ├── SVG Blink Animation ├── README.MD ├── SVG Blink.pbix ├── SVG Circle_Animation.txt └── SVG Text Animation.txt ├── SVG Fill Icon ├── README.md └── SVG_Fill_Icon.pbix ├── SVG Gradient Donut ├── SVG Donut └── SVG Gradient Donut.pbix ├── Short Month Name using DAX ├── README.md └── Short Month Names using DAX.pbix ├── Top Bottom With Dynamic Sorting.pbix ├── TopN with Others ├── README.md └── TopN with Others.pbix └── comparison with previous month.pbix /Arrow Chart/Arrow Chart 3 variations.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunoMath/Power_Bi/5fc01df0dd05bd63ba443fb15e173877a7e6707a/Arrow Chart/Arrow Chart 3 variations.pbix -------------------------------------------------------------------------------- /Arrow Chart/README.md: -------------------------------------------------------------------------------- 1 | ![Arrow Chart](https://github.com/user-attachments/assets/707374e4-5aa4-4372-a39f-601d156f806f) 2 | 3 | -------------------------------------------------------------------------------- /Custom Shape Map/Alpha 2 Country Code.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunoMath/Power_Bi/5fc01df0dd05bd63ba443fb15e173877a7e6707a/Custom Shape Map/Alpha 2 Country Code.xlsx -------------------------------------------------------------------------------- /Custom Shape Map/CustomMap.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunoMath/Power_Bi/5fc01df0dd05bd63ba443fb15e173877a7e6707a/Custom Shape Map/CustomMap.pbix -------------------------------------------------------------------------------- /Custom Shape Map/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Datasets/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Datasets/Sport Products Sales Analysis.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunoMath/Power_Bi/5fc01df0dd05bd63ba443fb15e173877a7e6707a/Datasets/Sport Products Sales Analysis.xlsx -------------------------------------------------------------------------------- /Dynamic Sorting/ReadME.md: -------------------------------------------------------------------------------- 1 | https://youtu.be/r7UgADx_yyk 2 | 3 | **Dynamic Top Bottom with Dynamic Sorting** 4 | ![top bottom](https://github.com/user-attachments/assets/51d53cb0-096b-4a9b-ad21-8dca0909a8ab) 5 | 6 | **Dynamic Top Bottom with Dynamic Sorting with more than one measure** 7 | ![image](https://github.com/user-attachments/assets/e72b904a-3340-4184-aee6-debb4b331cc3) 8 | 9 | 10 | -------------------------------------------------------------------------------- /Dynamic Sorting/Top Bottom With Dynamic Sorting with two measures.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunoMath/Power_Bi/5fc01df0dd05bd63ba443fb15e173877a7e6707a/Dynamic Sorting/Top Bottom With Dynamic Sorting with two measures.pbix -------------------------------------------------------------------------------- /Dynamic Sorting/Top Bottom With Dynamic Sorting.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunoMath/Power_Bi/5fc01df0dd05bd63ba443fb15e173877a7e6707a/Dynamic Sorting/Top Bottom With Dynamic Sorting.pbix -------------------------------------------------------------------------------- /Dynamic TopN/Readme.MD: -------------------------------------------------------------------------------- 1 | https://youtu.be/FEUI4Fv7gUk 2 | 3 | **Dynamic TopN Ranking** - 4 | **Version 1** 5 | ![image](https://github.com/SunoMath/Power_Bi/assets/87825065/b78bb8fb-c3d0-47ed-a9c4-5362c7333e19) 6 | 7 | 8 | **Dynamic TopN Ranking** - 9 | **Version 2** 10 | ![image](https://github.com/SunoMath/Power_Bi/assets/87825065/49ee57f2-c595-4378-a367-2c8a8e05f780) 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Dynamic TopN/TOP N_ Final.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunoMath/Power_Bi/5fc01df0dd05bd63ba443fb15e173877a7e6707a/Dynamic TopN/TOP N_ Final.pbix -------------------------------------------------------------------------------- /Highlight Min_Max/Highlight Min Max months over Years.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunoMath/Power_Bi/5fc01df0dd05bd63ba443fb15e173877a7e6707a/Highlight Min_Max/Highlight Min Max months over Years.pbix -------------------------------------------------------------------------------- /Highlight Min_Max/README.md: -------------------------------------------------------------------------------- 1 | ![image](https://github.com/user-attachments/assets/33517d84-b018-4720-b4ba-529bd1b82269) 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | **Top N & Bottom N With Dynamic Sorting** 2 | ![image](https://github.com/SunoMath/Power_Bi/assets/87825065/e358d46c-78ac-4dcb-b7d9-9fe6d6c77065) 3 | -------------------------------------------------------------------------------- /SVG Bar Charts/Gradient Bar Chart: -------------------------------------------------------------------------------- 1 | Gradient Bar Chart = 2 | VAR Bar_Fill = ([SUM_Sales]/[CALC_Sales])*200 3 | VAR Bar_Text = ([SUM_Sales]/[CALC_Sales]) 4 | VAR Formatted_Bar_Text = FORMAT(Bar_Text,"#.0%") 5 | VAR SVG_Data_URL = "data:image/svg+xml;utf8," 6 | VAR SVG_Start = "" 7 | VAR SVG_Data = 8 | " 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | "& Formatted_Bar_Text &" 17 | " 18 | VAR SVG_End = "" 19 | RETURN SVG_Data_URL & SVG_Start & SVG_Data & SVG_End 20 | -------------------------------------------------------------------------------- /SVG Bar Charts/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SVG Bar Charts/Sales_SVG Bar.csv: -------------------------------------------------------------------------------- 1 | Region,Salesperson,Actual_Sales,Rank,Sales_Target 2 | North,John,10000,1,8000 3 | North,Emma,5053,2,8000 4 | South,Alex,1513,4,8000 5 | South,Olivia,4000,3,8000 6 | -------------------------------------------------------------------------------- /SVG Blink Animation/README.MD: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SVG Blink Animation/SVG Blink.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunoMath/Power_Bi/5fc01df0dd05bd63ba443fb15e173877a7e6707a/SVG Blink Animation/SVG Blink.pbix -------------------------------------------------------------------------------- /SVG Blink Animation/SVG Circle_Animation.txt: -------------------------------------------------------------------------------- 1 | SVG Status = 2 | VAR Data_URL = "data:image/svg+xml;utf8," 3 | VAR SVG_Start = "" 4 | VAR No_Blink = 5 | " 6 | 7 | " 8 | VAR Blink = 9 | " 10 | 20 | 21 | " 22 | VAR CHECK_ = IF([Status_Color] = "#f94144", Blink, No_Blink) 23 | VAR SVG_End = "" 24 | RETURN 25 | Data_URL & SVG_Start & CHECK_ & SVG_End 26 | -------------------------------------------------------------------------------- /SVG Blink Animation/SVG Text Animation.txt: -------------------------------------------------------------------------------- 1 | SVG Status II = 2 | VAR Status_ = SELECTEDVALUE(IT_Systems_Monitoring[Status]) 3 | VAR Data_URL = "data:image/svg+xml;utf8," 4 | VAR SVG_Start = "" 5 | VAR No_Blink = 6 | " 7 | 24 | 25 | 26 | "&Status_&" 27 | " 28 | VAR Blink = 29 | " 30 | 54 | 55 | 56 | "&Status_&" 57 | " 58 | VAR CHECK_ = IF([Status_Color] ="#f94144", Blink, No_Blink) 59 | VAR SVG_End = "" 60 | RETURN 61 | Data_URL & SVG_Start & CHECK_ & SVG_End 62 | -------------------------------------------------------------------------------- /SVG Fill Icon/README.md: -------------------------------------------------------------------------------- 1 | **SVG Fill Icon** - 2 | ![image](https://github.com/user-attachments/assets/7798ff46-5e99-4bef-9702-2bcfe897c778) 3 | -------------------------------------------------------------------------------- /SVG Fill Icon/SVG_Fill_Icon.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunoMath/Power_Bi/5fc01df0dd05bd63ba443fb15e173877a7e6707a/SVG Fill Icon/SVG_Fill_Icon.pbix -------------------------------------------------------------------------------- /SVG Gradient Donut/SVG Donut: -------------------------------------------------------------------------------- 1 | 2 | Male_Donut = 3 | VAR Donut_Fill = ([COUNT_male]/[COUNT_gender])*100 4 | VAR Donut_Text = FORMAT(Donut_Fill/100,"#.0%") 5 | VAR Circumference = 2 * PI() * 80 6 | VAR Fill_Length = (Circumference*Donut_Fill)/100 7 | VAR Gap_Length = Circumference-Fill_Length 8 | VAR SVG_Data_URL = "data:image/svg+xml;utf8," 9 | VAR SVG_Start = "" 10 | VAR SVG_Data = 11 | " 12 | 13 | 14 | 15 | 16 | 17 | 39 | 40 | 41 | 42 | 43 | "& Donut_Text &" 44 | " 45 | VAR SVG_End = "" 46 | RETURN 47 | SVG_Data_URL & SVG_Start & SVG_Data & SVG_End 48 | -------------------------------------------------------------------------------- /SVG Gradient Donut/SVG Gradient Donut.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunoMath/Power_Bi/5fc01df0dd05bd63ba443fb15e173877a7e6707a/SVG Gradient Donut/SVG Gradient Donut.pbix -------------------------------------------------------------------------------- /Short Month Name using DAX/README.md: -------------------------------------------------------------------------------- 1 | YouTube: https://youtu.be/kQywpQmGbL8?si=fE-Yqs625udV_05Q 2 | 3 | ![image](https://github.com/user-attachments/assets/c5ccdfe3-c2c1-4f14-b9a0-64235454d196) 4 | -------------------------------------------------------------------------------- /Short Month Name using DAX/Short Month Names using DAX.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunoMath/Power_Bi/5fc01df0dd05bd63ba443fb15e173877a7e6707a/Short Month Name using DAX/Short Month Names using DAX.pbix -------------------------------------------------------------------------------- /Top Bottom With Dynamic Sorting.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunoMath/Power_Bi/5fc01df0dd05bd63ba443fb15e173877a7e6707a/Top Bottom With Dynamic Sorting.pbix -------------------------------------------------------------------------------- /TopN with Others/README.md: -------------------------------------------------------------------------------- 1 | https://youtu.be/0VRnbs8eKnY 2 | 3 | ![image](https://github.com/user-attachments/assets/fc701f50-eaf5-4eba-8b2a-d3e0bc7f144f) 4 | 5 | -------------------------------------------------------------------------------- /TopN with Others/TopN with Others.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunoMath/Power_Bi/5fc01df0dd05bd63ba443fb15e173877a7e6707a/TopN with Others/TopN with Others.pbix -------------------------------------------------------------------------------- /comparison with previous month.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunoMath/Power_Bi/5fc01df0dd05bd63ba443fb15e173877a7e6707a/comparison with previous month.pbix --------------------------------------------------------------------------------