├── 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 | 
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 | 
5 |
6 | **Dynamic Top Bottom with Dynamic Sorting with more than one measure**
7 | 
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 | 
6 |
7 |
8 | **Dynamic TopN Ranking** -
9 | **Version 2**
10 | 
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 | 
2 |
3 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | **Top N & Bottom N With Dynamic Sorting**
2 | 
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 = ""
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 = ""
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 = ""
60 | RETURN
61 | Data_URL & SVG_Start & CHECK_ & SVG_End
62 |
--------------------------------------------------------------------------------
/SVG Fill Icon/README.md:
--------------------------------------------------------------------------------
1 | **SVG Fill Icon** -
2 | 
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 = ""
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 | 
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 | 
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
--------------------------------------------------------------------------------